C# has the @ string literal to flexibly handle escape characters in strings. Is there anything like that in Java?
feedback
|
|
This is called a verbatim string literal. | |||
|
feedback
|
|
If only I had a nickle for every time I need this in Java... If you're doing a Regex operation consider | |||
|
feedback
|
|
Java supports path separators from UNIX which don't need to be escaped. e.g.
works fine on windows (and unix if you have a directory called The chose to use | |||
feedback
|