gpt4 book ai didi

java - 使用 For 循环将所有小写字母设置为大写字母

转载 作者:行者123 更新时间:2023-12-01 18:10:32 25 4
gpt4 key购买 nike

如何使用for循环将字符串中的所有小写字母设置为大写字母?

这就是我所做的,但我遇到了两个编译器错误,

  • The method setCharAt(int, char) is undefined for the type java.lang.String [line 7]

  • Array cannot be resolved [line 12]

public static String allUpperCases(String toEncode){
int length = toEncode.length();

for (int i = 0; i < length; i++){
char ch = toEncode.charAt(i);
if (Character.isLowerCase(ch)){
toEncode.setCharAt(i, Character.toUpperCase(ch));
}
}

return toEncode;
}

最佳答案

您只需使用一次操作即可!

my_string = my_string.toUpperCase();

关于java - 使用 For 循环将所有小写字母设置为大写字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33379305/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com