这是一个字符串
String foxes = "the,quick,brown,fox,jumped,over,the,lazy,dog";
我在想(尽管目前是小写的一个)
我将使用什么代码将任何字符串变成简约或大写
非常感谢
答案 0 :(得分:0)
String toUpperCase()方法怎么样?
String newString = foxes.toUpperCase()
请参阅http://www.tutorialspoint.com/java/java_string_touppercase.htm
答案 1 :(得分:0)
String
课程中有一个方法:
String foxes = "the,quick,brown,fox,jumped,over,the,lazy,dog";
String upperCase = foxes.toUpperCase();
String lowerCase = foxes.toLowerCase();
String
是不可改变的,所以你不能改变原作;你创建新的。