Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question

3 Answers

up vote 3 down vote accepted

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 \s though:

user> (print "abc\\nsdf#$%\\^")
abc\nsdf#$%\^

this only affect string literals read by the reader so if you read strings from a file the reader never sees them:

user> (spit "/tmp/foo" "abc\\nsdf#$%\\^")
nil
user> (slurp "/tmp/foo")
"abc\\nsdf#$%\\^"
user> (print (slurp "/tmp/foo"))
abc\nsdf#$%\^nil
user> 

so i think the basic answer is no

share|improve this answer

May be of use to a literal regular expression for such purposes.

user=> #"abc\nsdf#$%\^"
#"abc\nsdf#$%\^"
user=> (type #"abc\nsdf#$%\^")
java.util.regex.Pattern
user=> (println (str #"abc\nsdf#$%\^"))
abc\nsdf#$%\^
nil
share|improve this answer
Well, maybe this is bad. – BLUEPIXY Jun 15 '12 at 17:34

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.

share|improve this answer

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.