Does clojure have raw string?
Asked Answered
C

3

19

In Python, I can prefix an r to a string literal (raw string) to tell the interpreter not translate special characters in the string:

>>> r"abc\nsdf#$%\^"
r"abc\nsdf#$%\^"

Is there a way to do the same thing in Clojure?

Coadjutress answered 15/6, 2012 at 0:53 Comment(0)
C
16

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 \ 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.

Cottonseed answered 15/6, 2012 at 1:9 Comment(0)
E
5

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.

Evolute answered 15/6, 2012 at 11:58 Comment(0)
S
4

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
Surmount answered 15/6, 2012 at 9:34 Comment(1)
Cheeky but worked perfectly to print some ascii art.Belamy

© 2022 - 2024 — McMap. All rights reserved.