Assume a file containing
a123,red,23,Greece,"traveling, in cities", "playing games, like cod"
b245,"ted",45,London,"cars", "Exotic cars, loves Lambo"
I have been trying to read the file and store it in vector of class. The class has objects string Id, string name, int age, string from, vector Likes.
The file should store in vector in form of
vector<class> Info = {
{"a123","red",23,"Greece",{"traveling, in cities", "playing games, like cod"},
{"b245","ted",45,"London",{"cars", "Exotic cars, loves Lambo"}}
Can anyone help and tell me what I can use to read file, which is filled with quotation and commas in random places and is comma delimited into the vector in form shown above. thank you