Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am reading in a file of the format:

12, 10
15, 20
2, 10000

I want to read these in as x,y points. I've started out, but I'm not sure where to proceed from here... Here is what I have so far:

ifstream input("points.txt");
string line_data;

while (getline(input, line_data))
{
    int d;
    std::cout << line_data << std::endl;
    stringstream line_stream(line_data);
    while (line_stream >> d)
    {
        std::cout << d << std::endl;
    }
}

How can I read each of these lines in as an x,y integer?

share|improve this question

3 Answers

up vote 6 down vote accepted

Say:

int a, b; char comma;

if (line_stream >> a >> comma >> b)
{
  // process pair (a, b)
}
share|improve this answer
Or, if line-by-line parsing isn't required, while(input >> a ...) .... – Robᵩ Dec 19 '11 at 21:50
@Rob: Yeah, though it's a bit more robust to split it into lines. At least that way you can recover from an error. – Kerrek SB Dec 19 '11 at 21:57
ifstream input("points.txt");
int x, y;
char comma;
while (input >> x >> comma >> y)
{
    cout << x << " " << y << endl;
}
share|improve this answer

what about this ?

#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    std::ifstream input("points.txt");

    while (!input.eof())
    {
        int x, y;
        char separator;

        input >> x  >> separator >> y;

        cout << x << ", " << y << endl;
    }
}
share|improve this answer
1  
Please don't encourage the use of ios::eof as a loop condition. Doing so almost always results in buggy code. Prefer while(input >> x >> separator >> y). – Robᵩ Dec 19 '11 at 21:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.