Java String toLowerCase()
方法有兩種變體。 第一個變數使用給定Locale
的規則將此String
中的所有字元轉換為小寫。 它相當於呼叫toLowerCase(Locale.getDefault())
。
第二個變體將locale
作為在轉換為小寫時使用的引數。
語法
以下是此方法的語法 -
public String toLowerCase()
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tw511.com");
System.out.print("Return Value :");
System.out.println(Str.toLowerCase());
}
}
執行上面範例程式碼,得到以下結果:
Return Value :welcome to tw511.com