The following code fails to get me the first token of the string:
char *p1;
char array[100];
strcpy(array, "ANY STRING WOULD DO");
p1 = strtok(array, " ");
p1 = strtok(NULL, " ");
p1 = strtok(array, " ");
p1 = strtok(NULL, " ");
printf("%c", p1);
|
|
ANY'\0'STRING'\0'WOULD DO (e.g. if you were to print the string, you'd just see "ANY") Since strtok doesn't go beyond the end of a string, you'll only get the one token the second time around, and the call to |
|||
|
|
|
Please take a look at the example given here: MSDN: strtok, wcstok, _mbstok |
|||
|
|
|
This would work:
strtok modifies the string it is passed so if you want to re-parse it you need to copy it again. If you just want to keep the tokens, just copy the pointers. |
|||||||||
|
|
Remember that So, when you try tokenizing the same string again, you're really tokenizing the first token only. This will have as a result that the second Note btw, that you need to use |
|||
|
|
|
You probably have two choices:
|
|||
|
|