==>$csv = CSVReader(",", "Testing 1 2 3!, spaces, \"This is in quotes, allowing commas.\",,and a final one");==>while($csv.hasNextValue()) echo($csv.readNextValue());Testing 1 2 3! spacesThis is in quotes, allowing commas.and a final one
I'm curious what you used CSVs for that you needed this
I guess the only advantage here is the quotes allowing commas? you could use nextToken...