Closed GoogleCodeExporter closed 8 years ago
If building from source you can fix this with the following patch: to
alib/src/a_csv.cpp. In the function CSVLineParser :: GetQuoted change:
if ( Peek() == mSep ) {
Next();
}
to:
if ( Peek() == mSep ) {
Next();
mMore = true;
return field;
}
Original comment by nbutterworth1953@gmail.com
on 20 Aug 2010 at 10:02
Original issue reported on code.google.com by
nbutterworth1953@gmail.com
on 14 Aug 2010 at 11:28