vote up 3 vote down star

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?

flag

DO you mean you want to replace \\n with a newline character? – AnthonyWJones Aug 25 at 10:27
Yes, I do. – DR Aug 25 at 10:29

3 Answers

vote up 2 vote down check

Just use the strings own replaceAll method.

result = myString.replaceAll("\\n", "\n");

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.

Pattern p = Pattern.compile("\\(.)");
Matcher m = p.matcher("This is tab \\t and \\n this is on a new line");
StringBuffer sb = new StringBuffer();
while (m.find()) {
   String s = m.group(1);
   if (s == "n") {s = "\n"; }
   else if (s == "t") {s = "\t"; } 
   m.appendReplacement(sb, s);
}
m.appendTail(sb);
System.out.println(sb.toString());

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)

link|flag
Won't that be a performance drain if I do a replaceAll for every escapable character, i.e. 8 times? (java.sun.com/docs/books/…) – DR Aug 25 at 11:26
Sorry I was just showing an anwser to your simple case (its a knee-jerk that many of us do it doesn't really answer your question). Thats why I point you at the Matcher class, which in combination with a StringBuffer you can create a result string in one pass. – AnthonyWJones Aug 25 at 11:34
vote up 1 vote down

Anthony is 99% right -- since backslash is also a reserved character in regular expressions, it needs to be escaped a second time:

result = myString.replaceAll("\\\\n", "\n");
link|flag
vote up 0 vote down

May be you are looking for this - http://stackoverflow.com/questions/845233/parsing-a-string-containing-escaped-characters-using-java

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.