Search:

Type: Posts; User: Brt93yoda

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    1,419

    Re: Converting Cases Help

    Bradshjo, If you have any questions about the methods I used feel free to ask me, or look at the Java String API doc here.

    Scott, whenever someone gives me an answer I usually mess around with the...
  2. Replies
    6
    Views
    1,419

    Re: Converting Cases Help

    First put the whole string toLower() then just toUpper() the first letter, and the letter after a space.

    String name = "brett tooMEY";
    name = name.toLowerCase();
    name =...
Results 1 to 2 of 2