Re: Nonprinting characters in string

2012-05-07 Thread David Powell
Clojure doesn't seem to explicitly escape non-printable characters in String literals when you try to print them. You could always do it yourself with something like: (require 'clojure.string) (defn escape-nonprintable [s] (clojure.string/join (map (fn [c] (if (Character/isISOControl c)

Re: Nonprinting characters in string

2012-05-07 Thread DAemon
Ah, thanks. It just seemed like there should be something that did this! - D On Mon, May 7, 2012 at 7:38 PM, David Powell djpow...@djpowell.net wrote: Clojure doesn't seem to explicitly escape non-printable characters in String literals when you try to print them. You could always do it

Nonprinting characters in string

2012-05-06 Thread DAemon
This seems like a really silly question, but if I have a string like abc\000def, how do I print it in such a way that it shows abc\000def? I've tried playing around with prn and *print-readably*, but that doesn't seem to do what I want. Thanks! - DAemon -- You received this message because