gpt4 book ai didi

java - 简单替换密码

转载 作者:行者123 更新时间:2023-11-30 04:50:26 25 4
gpt4 key购买 nike

简单的替换密码。

我正在尝试创建一个循环结构,该结构将循环遍历一个字符串,同时将其写入另一个字符串。当遇到空格时,我无法使其跳过。谁能帮我解决这个问题吗?

    String translate = "";//create empty string
int xxx = 0; //initialise counter
while(xxx < text.length()) { //based on the original length of input text
if (text.charAt(xxx) != ' '){ //if no white space do this
translate = translate.concat(Character.toString((s2.charAt(copyS.indexOf(text.charAt(xxx))))));

} else { //if there is white space do this. (I'm unsure how to make it skip?)

}
xxx++;
}

最佳答案

如果您想跳过空格,只需删除 else block 即可。如果您想保留它,请添加

translate = translate.concat(' ');

注意 - 我的答案使用与您用于算法的相同模式 - 效率非常低。如果您想构建一个字符串,那么请查看StringBuilder类。

关于java - 简单替换密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9974727/

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