C++ - Read in file lines separated by a comma

12,594

Solution 1

char ch;
file >> int1 >> ch >> int2 >> ch >> dbl >> ch >> int3 >> ch >> int4;

Solution 2

You may want to try fscanf.

Something like this?

 fscanf(filepointer, "%d,%d,%f,%d,%d\n", &int1, &int2, &double1, &int3, &int4);
Share:
12,594
Arubix
Author by

Arubix

Updated on June 09, 2022

Comments

  • Arubix
    Arubix almost 2 years

    I tried looking up what I'm trying to do but I cant find specifically what I'm trying to do. I have a text file with multiple lines that look like this:

    12345,12345,12.34,12345,12345
    

    It's the same format on every line and I want to get each line and plug the numbers into certain variables. Something like this:

    file >> int1 >> int2 >> double1 >> int3 >> int4;
    

    But this is very hard for me to do because of the comma separating each number. I used to be able to do this when there was a 'space' but the comma is really throwing me off. Any ideas?