Java - 使字符串不区分大小写

时间:2016-06-20 14:24:46

标签: java string

这是一个字符串

String foxes = "the,quick,brown,fox,jumped,over,the,lazy,dog";

我在想(尽管目前是小写的一个)

我将使用什么代码将任何字符串变成简约或大写

非常感谢

2 个答案:

答案 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是不可改变的,所以你不能改变原作;你创建新的。