gpt4 book ai didi

java - 如何替换 String s = "33 6.33";在 Java 中为 "336.33"

转载 作者:行者123 更新时间:2023-11-29 06:55:07 26 4
gpt4 key购买 nike

这是一个奇怪的词;这是我的代码:

public static void main(String[] args) {

String s = "33 6.33";
Pattern p = Pattern.compile("\\s*|\t|\r|\n");
Matcher m = p.matcher(s);
s = m.replaceAll("");
System.out.println(s);
}

但它不起作用。

我找到了为什么代码不起作用,空白是不间断的空格....

最佳答案

    s.replaceAll("\\s+","");
//to remove multiple spaces even if you give more than 1 space it will do the job.

s - 表示空格字符。

希望代码对您有所帮助。

关于java - 如何替换 String s = "33 6.33";在 Java 中为 "336.33",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36006727/

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