JAVA Tutorial Manual
/Java 实例 - 字符串小写转大写
Java 实例 - 字符串小写转大写
以下实例使用了 String toUpperCase() 方法将字符串从小写转为大写:
//StringToUpperCaseEmp.java 文件publicclassStringToUpperCaseEmp{publicstaticvoidmain(String[]args){Stringstr="string abc touppercase ";StringstrUpper=str.toUpperCase();System.out.println("Original String: "+str);System.out.println("String changed to upper case: "+strUpper);}}
以上代码实例输出结果为:
OriginalString:stringabc touppercaseStringchanged to uppercase:STRING ABC TOUPPERCASE