> (use regex) > (string-substitute #\, "\\ \\0" "a,b") "a\\ ,b" > (string-substitute #\, "\\\\0" "a,b") "a\\\\0b"