[java] 字母大小写的转换
1、toLowerCase()方法。
语法如下:
str.toLowerCase() //str是要转换的字符串
2、toUpperCase()
语法如下:
str.toUpperCase()
示例如下
public class toUpperCaseL {
public static void main(String[] args) {
String s="helloJavahelloString";
String ups,lows;
ups=s.toUpperCase();
lows=s.toLowerCase();
System.out.println("原字符串为"+s);
System.out.println("转换为大写形式后为"+ups);
System.out.println("转换为小写形式后为"+lows);
}
}