davidsantiago / clojure-csv

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

Fix for characters appearing after closing quote #32

Closed attil-io closed 8 years ago

attil-io commented 8 years ago

This is the fix discussed in https://github.com/davidsantiago/clojure-csv/pull/31

Consider the following input: \"Hello\" \"Hello2\" \"Hello3\" This is invalid, since after the first closing quote (i.e. the quote after Hello), there are further characters. Without this fix, the field would be parsed as \"Hello2\" \"Hello3\". With the fix, an Exception will be thrown for such input.

davidsantiago commented 8 years ago

I merged this in 2.0.2. I squashed some of your commits, so github appears confused and doesn't think it was merged. Thanks for the fix.