java - How do I split strings in J2ME? -
how split strings in j2me in effective way?
there stringtokenizer
or string.split(string regex)
in standard edition (j2se), absent in micro edition (j2me, midp).
there few implementations of stringtokenizer class j2me. 1 ostermiller include functionality need
see this page on mobile programming pit stop modifications , following example:
string firsttoken; stringtokenizer tok; tok = new stringtokenizer("some|random|data","|"); firsttoken= tok.nexttoken();
Comments
Post a Comment