ClojureDocs

Namespaces

clojure.data.csv

Reading and writing comma separated values.
Vars in clojure.data.csv

r

read-csv
Reads CSV-data from input (String or java.io.Reader) into a lazy sequence of vectors. Valid options are :separator (default \,) :quote (default \")

w

write-csv
Writes data to writer in CSV-format. Valid options are :separator (Default \,) :quote (Default \") :quote? (A predicate function which determines if a string should be quoted. Defaults to quoting only when necessary.) :newline (:lf (default) or :cr+lf)