-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Labels
Description
Hi,
Thank you for your hardword to make a great lib.
Currently, I found an issue with following csv content:
"A B", "C, D"
I think the result should be two fields: A B & C, D.
But actually, the lib parse result as three fields: A B, C and D;
Here is my sample code:
import 'package:csv/csv.dart';
void main() {
final rows = const CsvToListConverter().convert('"A B", "C, D"\r\n');
for (final row in rows) {
print(row.join('_ '));
}
}
Output
A B_ C_ D