为什么这段代码不起作用?
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(" ...", "..."));
}
这是我想要的输出:
为此,您需要新版本。\n请更新应用...
谢谢提供信息