vote up 0 vote down star

I have been trying to tokenize a string using SPACE as delimiter but it doesn't work. Does any one have suggestion on why it doesn't work?

Edit: tokenizing using:

strtok(string, " ");

the code is like the following

pch = strtok (str," ");
while (pch != NULL)
{
  printf ("%s\n",pch);
  pch = strtok (NULL, " ");
}
flag
your example will get the first token, look to either gbjbaanb's or my answers for proper usage. – Evan Teran Nov 5 '08 at 20:02
OK. Now we're getting somewhere. What behavior do you expect that you are not getting? – dmckee Nov 5 '08 at 20:08
Your code is correct, please let us know what your input string and result is. – Evan Teran Nov 5 '08 at 20:08
BTW, kombo. Many people who work help desks or teach see the phrase "it doesn't work" as marking a user who hasn't read the furnished manual, or doesn't know what they actually want, or is deeply confused. The form you want is "I'm doing X, and I expected Y, but I got Z. What's wrong?" – dmckee Nov 5 '08 at 20:17
@dmckee: good point. Canonical x-ref: catb.org/~esr/faqs/… – Jonathan Leffler Nov 5 '08 at 22:46

7 Answers

vote up -1 vote down

strtok can be very dangerous. It is not thread safe. Its intended use is to be called over and over in a loop, passing in the output from the previous call. The strtok function has an internal variable that stores the state of the strtok call. This state is not unique to each thread - it is global. If any other code uses strtok in another thread, you get problems. Not the kind of problems you want to track down either!

I'd recommend looking for a regex implementation, or using sscanf to pull apart the string.

Try this:

char strprint[256];
char text[256];
strcpy(text, "My string to test");
while ( sscanf( text, "%s %s", strprint, text) > 0 ) {
   printf("token: %s\n", strprint);
}

Note: The 'text' string is destroyed as it's separated. This may not be the preferred behaviour =)

link|flag
In fact, if you look at modern strtok implementations, they tend to use thread-local storage (MSVC has certainly done this for years and years), so they are thread-safe. It's still an archaic function which I would avoid, though... – Will Dean Nov 5 '08 at 20:37
vote up 1 vote down

You can simplify the code by introducing an extra variable.

#include <string.h>
#include <stdio.h>

int main()
{
    char str[100], *s = str, *t = NULL;

    strcpy(str, "a space delimited string");
    while ((t = strtok(s, " ")) != NULL) {
    	s = NULL;
    	printf(":%s:\n", t);
    }
    return 0;
}
link|flag
vote up 4 vote down

Here's an example of strtok usage, keep in mind that strtok is destructive of its input string (and therefore can't ever be used on a string constant

char *p = strtok(str, " ");
while(p != NULL) {
    printf("%s\n", p);
    p = strtok(NULL, " ");
}

Basically the thing to note is that passing a NULL as the first param to strtok tells it to get the next token from the string it was previously tokenizing.

link|flag
vote up 9 vote down

do it like this:

char s[256];
strcpy(s, "one two three");
char* token = strtok(s, " ");
while (token) {
    printf("token: %s\n", token);
    token = strtok(NULL, " ");
}

Note: strtok modifies the string its tokenising, so it cannot be a const char*.

link|flag
heh, we posted nearly the same thing at the same exact time :-P – Evan Teran Nov 5 '08 at 19:58
I see, I hate that. Fortunately I hit Post seconds before you so nayanayayayaya :-) Have a vote though. – gbjbaanb Nov 5 '08 at 20:02
I'll return the favor ;) – Evan Teran Nov 5 '08 at 20:02
vote up 0 vote down

When reading the strtok documentation, I see you need to pass in a NULL pointer after the first "initializing" call. Maybe you didn't do that. Just a guess of course.

link|flag
vote up 1 vote down

Are you using strtok or something you grew yourself?

http://www.cplusplus.com/reference/clibrary/cstring/strtok.html

If you are using strtok are you trying to do it on a constant string?

link|flag
vote up 0 vote down

Add some code and let us see what you're doing.

link|flag

Your Answer

Get an OpenID
or

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