Java 字符串 toLowercase 和 toUpperCase 方法
Java 字符串 tolowercase()
方法
此 Java 字符串方法使用默认语言环境的规则将特定字符串的每个字符转换为小写字母。
注意:此方法对区域设置敏感。因此,如果用于打算单独编码的字符串,它可能会显示意外的结果。
语法
public String toLowerCase()
参数
NA
返回值
它返回转换为小写的字符串。
例 1:
public class Tastones {
public static void main(String args[]) {
String S1 = new String("UPPERCASE CONVERTED TO LOWERCASE");
//Convert to LowerCase
System.out.println(S1.toLowerCase());
}
}
输出:
uppercase converted to lowercase
Java 字符串 toUppercase()
方法
toUppercase()
方法用于将给定字符串中的所有字符转换为大写。
语法:
toUpperCase()
参数:
NA
返回值:
转换为大写字母的字符串
例 2:
public class Tastones {
public static void main(String args[]) {
String S1 = new String("lowercase converted to uppercase");
//Convert to UpperCase
System.out.println(S1.toUpperCase());
}
}
输出:
LOWERCASE CONVERTED TO UPPERCASE