C# has the @ string literal to flexibly handle escape characters in strings. Is there anything like that in Java?

link|improve this question

1  
Not all features of Java are available in C# and vice versa. – Oded Dec 4 '11 at 20:28
feedback

4 Answers

up vote 5 down vote accepted

There isn't. You'll need to escape your strings.

link|improve this answer
feedback

This is called a verbatim string literal.
Java does not have such a feature.

link|improve this answer
feedback

If only I had a nickle for every time I need this in Java...

If you're doing a Regex operation consider Pattern.quote as a replacement.

link|improve this answer
feedback

Java supports path separators from UNIX which don't need to be escaped. e.g.

"c:/my/file.txt" 

works fine on windows (and unix if you have a directory called c:)

The chose to use \ rather than / as a path separator like just about every other operating system before or since, is a pet hate of mine. ;) http://en.wikipedia.org/wiki/Backslash

link|improve this answer
I don't think that has much to do with Java itself - i.e. the above also works fine in Windows itself. And then sadly there were backcomp reasons in Windows which hindered them to use the backslash - actually the original developers weren't that happy with that themselves and included the possibility to change the path separator itself if you really wanted.. – Voo Dec 4 '11 at 20:43
feedback

Your Answer

 
or
required, but never shown

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