Name
9
Q:

String toLowerCase(Locale locale) method in java

/* to find the lowercase or uppercase of a string, 
* we just .toLowerCase() or .toUpperCase()
*/

public class CaseDemonstration {
  public static void main(String[] args) {
    
   	String testString = "THIS IS AN EXAMPLE OF A STRING";
    String testStringLower = testString.toLowerCase(); // make a string lowercase
    System.out.println(testStringLower); // "this is an example of a string"
    String testStringUpper = testStringLower.toUpperCase(); // make it upper again
    System.out.println(testStringUpper); // "THIS IS AN EXAMPLE OF A STRING"
    
  }
}
3
import java.util.*;
public class StringToLowerCaseMethodExample
{
   public static void main(String[] args)
   {
      String str = "HELLOWORLD CORE jAva";
      String strLower = str.toLowerCase();
      System.out.println(strLower);
   }
}


1
import java.util.Locale;
public class StringToLowerCaseMethodExample
{
   public static void main(String[] args)
   {
      String str = "HELLOWORLD sTrInG";
      String strEnglish = str.toLowerCase(Locale.ENGLISH);
      System.out.println(strEnglish);
      String strTurkish = str.toLowerCase(Locale.forLanguageTag("tr"));
      System.out.println(strTurkish);
   }
}


1

New to Communities?

Join the community