Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
647 views
in Technique[技术] by (71.8m points)

escaping - Does clojure have raw string?

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
sdf#$%^"
r"abc
sdf#$%^"

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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
sdf#$%^

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
sdf#$%^nil
user> 

So, I think the basic answer is no.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...