Java toUpperCase() 方法
toUpperCase() 方法將字符串小寫字符轉(zhuǎn)換為大寫。
語法
public String toUpperCase() 或 public String toUpperCase(Locale locale)
參數(shù)
無
返回值
字符轉(zhuǎn)換為大寫后的字符串。
實(shí)例
public class Test { public static void main(String args[]) { String Str = new String("m.hgci.cn"); System.out.print("返回值 :" ); System.out.println( Str.toUpperCase() ); } }
以上程序執(zhí)行結(jié)果為:
返回值 :m.hgci.cn
更多建議: