Java toUpperCase() 方法
Java String 对象的 toUpperCase() 方法用于将字符串小写字符转换为大写
语法
public String toUpperCase()
或
public String toUpperCase(Locale locale)
参数
参数 | 说明 |
---|---|
locale | 一个 Locale 对象,用于表示区域化的设置 |
返回值
字符转换为大写后的字符串
范例
下面的代码使用 toUpperCase() 方法将字符串转换为大写
public class Test { public static void main(String args[]) { String Str = new String("www.twle.cn"); System.out.print("返回值 :" ); System.out.println( Str.toUpperCase() ); } }
编译运行以上 Java 代码,输出结果如下
返回值 :WWW.TWLE.CN