JAVA中String类提供了转大写的方法toUpperCase()和转小写的方法toLowerCase()
使用如下:
String a = "ABC";
system.out.println(a.toLowerCase());//abc
String b = "abc";
system.out.println(b.toUpperCase());//ABC
JAVA中String类提供了转大写的方法toUpperCase()和转小写的方法toLowerCase()
使用如下:
String a = "ABC";
system.out.println(a.toLowerCase());//abc
String b = "abc";
system.out.println(b.toUpperCase());//ABC