gpt4 book ai didi

java - 以相反的方式存储句子中的每个字符串

转载 作者:行者123 更新时间:2023-12-02 06:40:03 27 4
gpt4 key购买 nike

我尝试使用缓冲的 string.reverse();但我想颠倒句子中的每个单词。所以我尝试用这个..

 for(int a = 0;a <= msgLength; a++){
temp += msg.charAt(a);
if((msg.charAt(a) == '')||(a == msgLength)){
for(int b = temp.length()-1; b >= 0; b--){
encrypt_msg += temp.charAt(a);
if((b == 0) && (a != msgLength))
encrypt_msg += "";
}
temp = "";
}
}

请帮我简化这个逻辑。字符串是用户定义的。我想在 jtextfields 中打印反转的字符串。

最佳答案

尝试以下简单代码:

String sentence= "This is sentence";
String[] words=sentence.split(" ");
for(String word: words){
System.out.println(new StringBuilder(word).reverse());
}

关于java - 以相反的方式存储句子中的每个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19227641/

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