I'm looking for a built-in Java functions which for example can convert "\\n" into "\n".
Something like this:
assert parseFunc("\\n") = "\n"
Or do I have to manually search-and-replace all the escaped characters?
|
|
|||||
|
|
|
Just use the strings own replaceAll method.
However if you want match all escape sequences then you could use a Matcher. See http://www.regular-expressions.info/java.html for a very basic example of using Matcher.
You just need to make the assignment to s more sophisticated depending on the number and type of escapes you want to handle. (Warning this is air code, I'm not Java developer) |
||||
|
|
|
Anthony is 99% right -- since backslash is also a reserved character in regular expressions, it needs to be escaped a second time:
|
||
|
|
|
|
May be you are looking for this - http://stackoverflow.com/questions/845233/parsing-a-string-containing-escaped-characters-using-java |
||
|
|