gpt4 book ai didi

java - 替换 Java 中的空格和其他一些字符

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:51:55 25 4
gpt4 key购买 nike

为什么这段代码不起作用?

public static void main(String[] args) {
String s = "You need the new version for this. Please update app ...";
System.out.println(s.replaceAll(". ", ".\\\\n").replaceAll(" ...", "..."));
}

这是我想要的输出:

You need the new version for this.\nPlease update app...

感谢提供信息

最佳答案

String.replaceAll 方法将 Regex 作为第一个参数。

因此您需要转义您的 (.),因为它在 Regex 中具有特殊含义,可以匹配任何字符。

System.out.println(s.replaceAll("\\. ", ".\\\\n").replaceAll(" \\.\\.\\.", "..."));

但是,对于给定的输入,您可以简单地使用 String.replace 方法,因为它不需要 Regex,并且有一个额外的优势。

关于java - 替换 Java 中的空格和其他一些字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13515586/

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