java.lang.String.toUpperCase(Locale locale) 方法將所有的字元在該字串使用給定Locale的規則轉為大寫。
以下是java.lang.String.toUpperCase()方法的宣告
public String toUpperCase()
locale -- 預設使用的情況下,轉換規則為這個語言環境。
此方法返回轉換為大寫的字串。
NA
下面的例子顯示java.lang.String.toUpperCase()方法的使用。
package com.yiibai; import java.lang.*; import java.util.*; public class StringDemo { public static void main(String[] args) { String str1 = "This is YiiBai"; // using the default system Locale Locale defloc = Locale.getDefault(); // converts all lower case letters in to upper case letters System.out.println("string value = " + str1.toUpperCase(defloc)); str1 = "www.tw511.com"; System.out.println("string value = " + str1.toUpperCase(defloc)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
string value = THIS IS TUTORIALSPOINT string value = WWW.TUTORIALSPOINT.COM