gpt4 book ai didi

java - Java中如何连接字符串?

转载 作者:行者123 更新时间:2023-12-02 04:14:59 27 4
gpt4 key购买 nike

strKeyword将根据循环重复。如何将结果保存为新字符串。例如,如果工作“hello”重复两次,我现在如何将“hellohello”创建为全新的字符串。

for (int l = 0; l < newKeywordLength; l++) {          
System.out.print(strKeyword);
}

最佳答案

string newWord="";
for (int l=0; l<newKeywordLength; l++){
newWord+=strKeyword;
}
System.out.print(newWord);

关于java - Java中如何连接字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33417350/

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