csv-conduit
csv-conduit copied to clipboard
Wrong parsing of rows
I have this file:
hello,","," ",world,"!" hello,","," ",world,"!" hello,","," ",world,"!"
Parsing it with this program:
s <- BS.readFile input
let Right csv = decodeCSV (CSVSettings ',' (Just '"')) s :: Either SomeException (Vector (Row BS.ByteString))
print . Data.Vector.length $ csv
Result is "1". Why?
Probably duplicate of #24 ?