String toLowerCase(Locale locale) method in Java

The toLowerCase(Locale locale) method in Java converts all of the characters in this String to lower case using the rules of the given Locale.

Syntax

Let us see the syntax,

String toLowerCase(Locale locale)

Parameters

Let us see the parameters,

  • locale – case transformation rules for this locale

Example

The following is an example of toLowerCase(Locale locale),

import java.util.*;

public class StudyopediaDemo {

   public static void main(String args[]) {
	 
      String message1 = new String("Studyopedia provides free learning content!");
      System.out.println("String: "+message1);

      String message2 = new String("STUDYOPEDIA PROVIDES FREE LEARNING CONTENT!");
      System.out.println("String: "+message2);
	  
      Locale loc = Locale.ENGLISH;
	  
      System.out.print("Result = ");
      System.out.println(message1.toLowerCase(loc));
	  
      System.out.print("Result = ");
      System.out.println(message2.toLowerCase(loc));
  } 
}

Output

The following is the output,

Java string tolowercase method locale

String toLowerCase() method in Java
String toString() method in Java
Studyopedia Editorial Staff
[email protected]

We work to create programming tutorials for all.

No Comments

Post A Comment