Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to parse a text file or a java property which contains text such as: "test\n123\t456" to the equivalent if it were written in String test = "test\n123\t456";

i.e. I want the bytes to be the same when the text is read from a file compared to compiled in a java class.

I hope this makes sense,

-- Steven

share|improve this question

2 Answers

up vote 2 down vote accepted

Apache Commons have StringEscapeUtils.unescapeJava method.

share|improve this answer
Looks about right. I'll look into it soon. – Steven Jan 13 '11 at 9:30
Unfortunately this library seems to unescape too much when not wanted. An input of "test\\\n123" returns "test\n" instead of "test\\n" (or ignoring completely). I might need to use my own solution similar to what Peter mentioned. – Steven Jan 14 '11 at 12:40
2  
it works properly. there's actually double unescaping happens: in string literal and in unescapeJava. if you pass "test\\\\\\n123" (which is actually 'test\\\n123' when unescaped in literal) you will get expected answer. – pingw33n Jan 14 '11 at 14:15
thanks, this did the trick – Steven Jan 16 '11 at 22:14

In my IDE, if I paste into the middle of a string it turns tabs into \t and newlines into \n for you. I suggest you try that.

For example, if I paste

test
123
456

into a string it becomes

"test\n" +
"123\n" +
"456"
share|improve this answer
I am looking for some code snippet which converts something like: "test\n" to "test(special new char line here)". i.e. the source code version would be: "test\\n" and changed to the source code version: "test\n" – Steven Jan 13 '11 at 7:14
do you mean something like text.replace("\\n","\n"); – Peter Lawrey Jan 13 '11 at 7:28
sort of, but I would like an easy way to cover all possible special characters – Steven Jan 13 '11 at 9:24
@Steven there ain't that many. – Peter Lawrey Jan 13 '11 at 16:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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