davidsantiago / clojure-csv

A library for reading and writing CSV files from Clojure
187 stars 35 forks source link

Commas inside quotes #36

Closed unhandyandy closed 7 years ago

unhandyandy commented 7 years ago

Does this parser ignore commas inside quotes when splitting fields, as I hope it does?

Since you said "Quoting and escaping inside CSV fields are handled correctly (specifically commas and double-quote characters)," I'm assuming the answer is Yes.

davidsantiago commented 7 years ago

Yes, it does handle them correctly. Separators in quoted fields are not treated as separators. Quotes can be escaped inside quoted fields.

unhandyandy commented 7 years ago

Thank you!