Java 字符串 toLowerCase() 方法
示例
将字符串转换为大写和小写字母
String txt = "Hello World";
System.out.println(txt.toUpperCase());
System.out.println(txt.toLowerCase());
定义和用法
The toLowerCase()
方法将字符串转换为小写字母。
注意: toUpperCase() 方法将字符串转换为大写字母。
语法
public String toLowerCase()
参数
无。
技术细节
返回值 | 一个 String 值,表示转换为小写的新的字符串 |
---|
❮ 字符串方法