Java String toUpperCase()
方法有兩種變體。第一個變數使用給定Locale的規則將此String中的所有字元轉換為大寫。 這相當於呼叫toUpperCase(Locale.getDefault())
。
第二個變體將locale
作為在轉換為大寫時使用的引數。
語法
下面是這個方法的語法 -
public String toUpperCase(Locale locale)
locale
- 指定區域。import java.util.*;
public class Test {
public static void main(String[] args) {
String str1 = "Self Learning Center";
// using the default system Locale
Locale defloc = Locale.getDefault();
// converts all upper case letters in to Upper case letters
System.out.println("string value = " + str1.toUpperCase(defloc));
str1 = "WWW.Kaops.COM";
System.out.println("string value = " + str1.toUpperCase(defloc));
}
}
執行上面範例程式碼,得到以下結果:
string value = SELF LEARNING CENTER
string value = WWW.KAOPS.COM