I have a string that contains escaped characters:
String myString = "I\\nam\\na\\nmultiline\\nstring\\twith\\ttabs";
I would like to convert the escaped characters so that it would output:
System.out.println(myConvertedString);
I am a multiline string with tabs
Is there any standard function (maybe Guava) that does this?