What is the method for converting strings in Java between upper and lower case?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
String#toLowerCase and String#toUpperCase are the methods you need. |
|||||||
|
|
Yes. There are methods on the String itself for this. Note that the result depends on the Locale the JVM is using. Beware, locales is an art in itself. |
|||||||||||||
|
|
There are methods in the String class; i.e.
This will clarify your doubt |
||||
|
|