Example for isLowerCase() method of character class

Example for isLowerCase() method of character class


Posted in : Core Java Posted on : October 1, 2010 at 2:59 PM Comments : [ 0 ]

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

Download This Example.

Go to Topic «PreviousHomeNext»

Your Comment:


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

 
Tutorial Topics