gpt4 book ai didi

java - 在java中,当将带有空格的char数组转换为字符串时,如何删除该字符串中的空格?

转载 作者:行者123 更新时间:2023-12-02 07:07:17 26 4
gpt4 key购买 nike

String output = new String(encryptText);
output = output.replaceAll("\\s", "");
return output;

replaceAll("\\s", ""); 不起作用

最佳答案

String output = new String(encryptText);
output = output.replaceAll(" ", "");
return output;

关于java - 在java中,当将带有空格的char数组转换为字符串时,如何删除该字符串中的空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15943053/

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