Possible Duplicate:
How do I tokenize a string in C++?
Can sombody help me dividing a line in parts? I want to break the line at each ';', it is stored in myLine.
Example of a line: surname firstName;6;7;4;10;5;9;8;3;6;7;4;10;5;9;8;6;7;4;10;5;9;6;7;4;10;5;9;
fgets(line[i], LAENGE, datei);
char* myLine = line[i];
I'm thankful for every tip! :)