Hi guys, I am new with c++, so please bear with me...
I am reading in a text file that similar to this:
$ABCDE,12345,12345,12345,12345....
I need to be able to place each number in a variable like:
A = $ABCDE
B = 12345
C = 12345
...
I can get the delimiter to read the first variable but I am having problems using getline() to make the rest variables. Any help would be appreciated. Thanks!