例如:
将字符串转换为大写和小写字母:
String txt = "Hello World";
System.out.println(txt.toUpperCase());
System.out.println(txt.toLowerCase());
1、定义和用法
toUpperCase()
方法将字符串转换为大写字母。
注意:toLowerCase()
方法将字符串转换为小写字母。
2、调用语法
public String toUpperCase()
3、方法说明
返回值: |
|
例如:
将字符串转换为大写和小写字母:
String txt = "Hello World";
System.out.println(txt.toUpperCase());
System.out.println(txt.toLowerCase());
toUpperCase()
方法将字符串转换为大写字母。
注意:toLowerCase()
方法将字符串转换为小写字母。
public String toUpperCase()
返回值: |
|