I\'m processing a string which is tab delimited. I\'m accomplishing this using the split function, and it works in most situations. The problem occurs when a f
split
You can use yourstring.split("\x09"); I tested it, and it works.