Encouraged by this, and the fact I have billions of string to parse, I tried to modify my code to accept StringTokenizer instead of String[]
The only t
I would recommend Google's Guava Splitter. I compared it with coobird test and got following results:
Splitter
StringTokenizer 104 Google Guava Splitter 142 String.split 446 regexp 299