up vote 1 down vote favorite
share [g+] share [fb]

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.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Quick primitive implementation. I have no idea of restrictions of J2ME, so I hope it fits or it gives some ideas...

String str = "Hello, there, everyone?";

StringBuffer result = new StringBuffer(str.length());
String strl = str.toLowerCase();
boolean bMustCapitalize = false;
for (int i = 0; i < strl.length(); i++)
{
  char c = strl.charAt(i);
  if (c >= 'a' && c <= 'z')
  {
    if (bMustCapitalize)
    {
      result.append(strl.substring(i, i+1).toUpperCase());
      bMustCapitalize = false;
    }
    else
    {
      result.append(c);
    }
  }
  else
  {
    bMustCapitalize = true;
  }
}
System.out.println(result);

You can replace the convoluted uppercase append with:

result.append((char) (c - 0x20));

although it might seem more hackish.

link|improve this answer
Good solution, thank you! – Ciryon Oct 30 '08 at 9:55
Some J2ME implementations have extensions for alternate character sets. If this is a concern, you really need to follow the platform's recommendations for collation, so the char math trick won't work on those character sets. – Ken Gentle Oct 30 '08 at 12:12
feedback

Suggestion:

May be if you can port one regexp library on J2ME, you could use it to strip spaces in your String...

link|improve this answer
Good suggestion, but problematic due to licensing issues. – Ciryon Oct 30 '08 at 7:49
Won't perform the camel-case operation, though. – Ken Gentle Oct 30 '08 at 12:10
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.