What would be a simple implementation of a method to convert a String like "Hello there everyone" to "helloThereEveryone". In JavaME support for String and StringBuffer utility operations are quite limited.
|
|
|
|
|
|
|
Quick primitive implementation. I have no idea of restrictions of J2ME, so I hope it fits or it gives some ideas...
You can replace the convoluted uppercase append with:
although it might seem more hackish. |
||||
|
|
|
Suggestion: May be if you can port one regexp library on J2ME, you could use it to strip spaces in your String... |
||||
|
|
|
With CDC, you have: String.getBytes();//to convert the string to an array of bytes String.indexOf(int ch); //for locating the beginning of the words String.trim();//to remove spaces For lower/uppercase you need to add(subtract) 32. With these elements, you can build your own method. |
||
|
|
