I have a string test="first \\n middle \\n last"
Now I want to replace all "\\n" by "\n"
I've tried test.replaceAll("\\\\n", "\\n") and test.replaceAll("\\n", "\n") but they don't work
Anyone has a solution?
Thanks!
Use this code:
String test="first \\n middle \\n last";
System.out.println("Output: " + test.replaceAll("\\\\n", "\n"));
Output: first
middle
last
"\\\\" + "n" for backslash "\\" and "n" in original string is being replaced by "\n"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With