In python, I can prefix a "r" to a string literal (raw string) to tell the interpreter not translate special char in the string:
>>> r"abc\nsdf#$%\^"
r"abc\nsdf#$%\^"
Is there a way to do the same thing in Clojure ?
|
|
|
Clojure Strings are java strings and the reader does not add anything significant to their interpretation. The reader page just says " Standard Java escape characters are supported." you can escape the
this only affect string literals read by the reader so if you read strings from a file the reader never sees them:
so i think the basic answer is no |
||||
|
|
|
Please also note that if you're using Counterclockwise (the Eclipse plugin for Clojure), there is a mode, called "smart paste" (disabled by default) which takes care of correctly escaping special characters when you paste inside an existing literal String. |
|||
|
|
|
May be of use to a literal regular expression for such purposes.
|
||||
|
|