csvparser 1.0.0
csvparser: ^1.0.0 copied to clipboard
a simple csvparser.
csvparser
Naive csvparser. This code may work, or it may not. I just got bored by writing it repeatedly, so I thought I'd publish it.
Sample usage:
String data=""hello","world"\n"wie\ngeht's","dir"";
CsvParser cp = new CsvParser(data, seperator:",", quotemark:"""); while(cp.moveNext()) { cp.current.forEach((String s)=>print(s)); }