I think this is probably something simple, but after an hour of searching, I\'ve had no luck figuring out what I\'m doing wrong.
I\'m using the following code to rea
It's because your csv has spaces before the quotes:
one0, one1, one2 two0, two1, two2 tre0, "tr,e1", tre2
vs
one0,one1,one2 two0,two1,two2 tre0,"tr,e1",tre2
You'll need to remove those extra spaces first.