If your input field separator isn't a fixed string, you might want
split to return the field separators as well as
the data by using parentheses in PATTERN to save
the field separators. For instance:
split(/([+-])/, "3+5-2");
returns the values:
(3, "+", 5, "-", 2)
To split colon-separated records in the style of the
/etc/passwd file, use:
@fields = split(/:/, $RECORD);
The classic application of split is
whitespace-separated records:
@fields = split(/\s+/, $RECORD);
If $RECORD started with whitespace, this last use
of split would have put an empty string into the
first element of @fields because
split would consider the record to have an initial
empty field. If you didn't want this, you could use this special form
of split:
@fields = split(" ", $RECORD);
This behaves like split with a pattern of
/\s+/, but ignores leading whitespace.