In this tutorial, We will introduce you about the isLowerCase() method of character class.
Example for isLowerCase() method of character class
In this tutorial, We will introduce you about the isLowerCase() method of character class. This method specifies whether the given character is Lower Case or not. This method returns true when character is in lower case and false when character is not in lower case.
Example:CharacterIsLowerCase.java
package com.devmanuals; public class CharacterIsLowerCase { public static void main(String[] args) { System.out.print("Is character G is LowerCase= "); System.out.println(Character.isLowerCase('G')); System.out.print("Is character g is LowerCase= "); System.out.println(Character.isLowerCase('g')); System.out.print("Is character w is LowerCase= "); System.out.println(Character.isLowerCase('w')); } }
Output:
Is character G is LowerCase= false Is character g is LowerCase= true Is character w is LowerCase= true |
[ 0 ] Comments