E. Chizhova
3
Q:

tolowercase java

String txt = "111 World";
System.out.println(txt.toUpperCase());
System.out.println(txt.toLowerCase());
2
String s1 = "JAVATPOINT HELLO stRIng";  
String s1lower = s1.toLowerCase(); // s1lower = "javatpoint hello string" 
1
String txt = "123 World";
System.out.println(txt.toUpperCase());
System.out.println(txt.toLowerCase());
4

New to Communities?

Join the community