I'm using the method quoteChar('"') to treat the strings.
The usual escape sequences such as "\n" and "\t" are recognized and converted to single characters as the string is parsed.
Is there any way to get the string just the way it is, meaning that if i have the string:
Hello\tworld
i want to get
Hello\tworld
and not:
Hello world
. Thanks