Hello,
I have a string that contains |% as a delimiter. The StringTokenizer class doesn't seem to be working for this particular case. Is there something else I can use that would parse out this multi character delimiter and also return the delimiter as well?
So for example
col1|%col2|%|%
The output should be
col1
|%
col2
|%
|%
Thanks in advance for any assistance.
