How do I split strings in J2ME in an effective way?
There is a StringTokenizer or String.split(String regex) in the standard edition (J2SE), but they are absent in t
String.split(...) is available in J2SE, but not J2ME. You are required to write your own algorithm: related post with sample solution.