getline() and Delimiter problem
e.x. John Doe, Jane Doe, etc...
I know using getline( in_stream, candidateNames[0][5], ','); would read the line up until the first column. I know i need a loop to cycle thru the array to put the strings in their appropriate locations.
The problem is I am having a hard time trying to find a way to read until the end of the line so that it does not stop at the first instance of the delimiter, that it will read each name until end of the line. any sugestions??

