csv-parser icon indicating copy to clipboard operation
csv-parser copied to clipboard

Quote character not removed properly

Open zazolabs opened this issue 3 years ago • 0 comments

If there is a space after the comma, i.e.

val1, val2, "val3", val4

the col[2] is "val3 - it is trimmed but the first quote is not removed.

val1, val2,"val3", val4

without space it gives the correct result.

zazolabs avatar Jun 11 '22 09:06 zazolabs