Java String.toLowerCase()
Syntax
String.toLowerCase() has the following syntax.
public String toLowerCase()
Example
In the following code shows how to use String.toLowerCase() method.
public class Main {
public static void main(String[] argv) {
String str = "Java2s.Com";
System.out.println(str.toLowerCase());
/* w w w . j a v a2 s .c o m*/
}
}
The code above generates the following result.