I have some strings in a file that are already escaped. So the content of the file looks like this:
Hello\nWorld. This is\tGreat.
When I read the file, I get \n
as two different characters instead of one.
How can I convert an escaped string to a non-escaped one?