Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ArrayList 中有一个字符串,我想在代码中的下一行使用它之前将其转换为小写。该字符串称为“结果”,并且在 ArrayList 方法中不接受 .inLowercase。我怎样才能将结果转换为小写,我试过这个没有运气解释:
result = result.toLowerCase();
我也试过这个:
Set<String> results2 = new results.toLowerCase();
不走运,是的,我是菜鸟.. =?
任何帮助都会很棒。先感谢您。
这有效:
String[] stringsArray = strings.toArray(new String[0]); for (int i=0; i<stringsArray.length; ++i) { stringsArray[i] = stringsArray[i].toLowerCase(); } strings.clear(); strings.addAll(Arrays.asList(stringsArray));
谢谢大家的帮助。特别是stackoverflow的人。=]