Check out example codes for "String toLowerCase(Locale locale) method in java". It will help you in understanding the concepts better.
Code Example 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);
}
}
Code Example 2
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);
}
}
Code Example 3
/* 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"
}
}
Learn ReactJs, React Native from akashmittal.com