I need to split a string, by some pattern. But I also need to keep
the delimiter as well. For example if my string is
"text delimeter text delimeter text", the array would be
@a=(text, delimeter, text, delimeter, text).
If you try to split normally, you get @a=(text, text, text), and the delimeter is discarded.
In reply to splitting
by Eugene