このコードが機能しないのはなぜですか?
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アプリを更新してください...
情報のおかげで