YouTip LogoYouTip

Character Islowercase

# Java isLowerCase() Method [![Image 3: Java Character Class](#)Java Character Class](#) * * * The isLowerCase() method is used to determine whether the specified character is a lowercase letter. ### Syntax boolean isLowerCase(char ch) ### Parameters * **ch** -- The character to be tested. ### Return Value Returns true if the character is lowercase; otherwise, returns false. ### Example public class Test {public static void main(String args[]) {System.out.println( Character.isLowerCase('c'));System.out.println( Character.isLowerCase('C'));}} The output of the above program is: truefalse * * Java Character Class](#)
← Matplotlib BarMatplotlib Subplots β†’