Home Tutorial Java StringExamples java.lang.String.toLowerCase()

 
 

java.lang.String.toLowerCase()
Posted on: March 27, 2005 at 12:00 AM
toLowerCase() is the method of the String class in Java, which is used to convert upper case characters into the lower case characters.

toLowerCase() is the method of the String class in Java, which is used to convert upper case characters into the lower case characters. The method name itself clear the purpose of the toLowerCase() string calss method... the given example will show you how to implement the toLowerCase() method in your code.

a simple String.tolowercase java example:

public class Lowercase

{

public static void main(String[] args)

{

String str = "CONVERT TO LOWER CASE JAVA EXAMPLE.";

// to convert the string to lowercase.

String lower = str.toLowerCase();

// Display the two strings for comparison.

System.out.println("Orignal Value = " + str);

System.out.println("Changed to lowercase = " + lower);

}

}

the output is:

Orignal Value = CONVERT TO LOWER CASE JAVA EXAMPLE.

Changed to lowercase = convert to lower case java example.

Example code

Alphabet Character Case-Converter

Related Tags for java.lang.String.toLowerCase():


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.