I am trying to tokenize a database dump separated by commas. I only need to read the first word, which will tell me if this is the line I need and then tokenize the line and save each separated string in a vector.

I have had trouble keeping all of the datatypes in order. I use a method of getline:

string line;
    vector<string> tokens;

// Iterate through each line of the file
while( getline( file, line ) )
{
    // Here is where i want to tokenize. strtok however uses a character array and not a string.
}

The thing is, I only want to continue reading and tokenize a line if the first word is what I am after. Here is a sample of a line from the file:

example,1,200,200,220,10,550,550,550,0,100,0,-84,255

So, if I am after the string example, it goes ahead and tokenizes the rest of the line for my use and then stops reading from the file.

Should I be using strtok, stringstream or something else?

Thank you!

link|improve this question

76% accept rate
feedback

2 Answers

up vote 1 down vote accepted
#include <iostream>
#include <fstream>
#include <vector>
using namespace std;

void do(ifstream& file) {
    string line;
    string prefix = "example,";

    // Get all lines from the file
    while (getline(file,line).good()) {
        // Compare the beginning for your prefix
        if (line.compare(0, prefix.size(), prefix) == 0) {
            // Homemade tokenization
            vector<string> tokens;
            int oldpos = 0;
            int pos;
            while ((pos = line.find(',', oldpos)) != string::npos) {
                tokens.push_back(line.substr(oldpos, pos-oldpos));
                oldpos = pos + 1;
            }
            tokens.push_back(line.substr(oldpos)); // don't forget the last bit
            // And here you are!
        }
    }
}
link|improve this answer
feedback

How do I tokenize a string in C++?

http://www.daniweb.com/software-development/cpp/threads/27905

Hope this helps, though I am not proficient C/C++ programmer. For the record it would be nice if you could specify in the tags or in post language you are using.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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