char *token = "gkjsdhvcxvcvbcbcv"
char c[90];
strcpy( c, token);
c[sizeof(c)-1] = '\0';
char *broken = strtok(c, " ");
if ( broken != NULL)
{
//Should not come here as there is no white space???
}
|
2
|
|||||
|
|
|
Are you trying to determine whether or not the string has spaces in it? If so, then the solution is to use strchr() instead of strtok(). e.g.
If you want to tokenize the string only if the string contains at least one delimiter, then you need to use both strchr() & strtok():
|
|||
|
|
|
|
You're getting the first token which is the entire string. A second call would return NULL as there are no more tokens:
|
||
|
|
|
|
The string itself, in the absence of delimiters, is the first token. If you try to print If you want to have a section of code not executed when a string lacks a particular character, you should test with |
||
|
|
|
|
strtok divides the input string into smaller strings split by the input delimiters. Since there is no white space, it returns the whole string. |
||
|
|
|
|
Things that could go wrong with the above code:
And as other have pointed out, strtok() seems to be behaving properly. |
||||
|
