I have a CSV file that has a "data", "more data" format. I have found how to use getline to read it in. Which works fine, and I just remove the "s. The problem is that I have found that the lines has commas in the data, ie "data1, data2", "more data" so it causing a problem when I read it in.

How can I read the data in better? Or have it read the lines by "", ?

Thanks