+toLowerCase
Return type String
Returns a new string with all characters converted to lowercase.
import java.lang.String;
class tolowercase{
public static void main(String[] args){
System.out.println("WELCOME : "+"WELCOME".toLowerCase());
}
}
Output : WELCOME : welcome
Returns a new string with all characters converted to lowercase.
import java.lang.String;
class tolowercase{
public static void main(String[] args){
System.out.println("WELCOME : "+"WELCOME".toLowerCase());
}
}
Output : WELCOME : welcome