I can convert a string to a sequence, and then convert that sequence to a string representing the sequence.
user=> (str (first (list (seq "(xy)z"))))
"(\\( \\x \\y \\) \\z)"
I can also insert apply into the above form to get the original string back
user=> (apply str (first (list (seq "(xy)z"))))
"(xy)z"
but is there a way to convert a string representing a sequence, to the sequence that the string represents? such as:
"(\\( \\x \\y \\) \\z)"
user=> (some-fn2 "(\\( \\x \\y \\) \\z)")
(\( \x \y \) \z \))