csv2 icon indicating copy to clipboard operation
csv2 copied to clipboard

The Reader Bug?

Open hwliu11 opened this issue 5 years ago • 1 comments

I try read Denver Crime Data example file crime.csv,the first line get wrong col number.The header has 19 cols,but read 18 cols. Debug the source,in file reader.hpp line Code: quote_opened = escaped || (buffer_[i + 1] != delimiter::value); seem wrong,May be is like this: quote_opened = escaped && (buffer_[i + 1] != delimiter::value); Or my wrong usage?

hwliu11 avatar Oct 30 '20 01:10 hwliu11

set the first row not the header

huangshangbin avatar Apr 15 '21 06:04 huangshangbin