string to lower case java code example
Example 1: java string lowercase
string.toLowerCase();
Example 2: java lowercase
"Hello World".toLowerCase()
Example 3: java how to make a string lowercase
public class CaseDemonstration {
public static void main(String[] args) {
String testString = "THIS IS AN EXAMPLE OF A STRING";
String testStringLower = testString.toLowerCase();
System.out.println(testStringLower);
String testStringUpper = testStringLower.toUpperCase();
System.out.println(testStringUpper);
}
}
Example 4: islowercase java
public class Test {
public static void main(String args[]) {
System.out.println(Character.isLowerCase('c'));
System.out.println(Character.isLowerCase('C'));
System.out.println(Character.isLowerCase('\n'));
System.out.println(Character.isLowerCase('\t'));
}
}