Does clojure have raw string?

前端 未结 3 1557
青春惊慌失措
青春惊慌失措 2020-12-09 09:59

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

>>&g         


        
3条回答
  •  余生分开走
    2020-12-09 10:40

    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.

提交回复
热议问题