Java StringtoLowerCase() Method
Example
Convert a string to upper case and lower case letters:
String txt = "Hello World";System.out.println(txt.toUpperCase());System.out.println(txt.toLowerCase());Definition and Usage
ThetoLowerCase() method converts a string to lower case letters.
Note: ThetoUpperCase() method converts a string to upper case letters.
Syntax
public String toLowerCase()Parameters
None.
Technical Details
| Returns: | AString value, representing the new string converted to lower case |
|---|
❮ String Methods

