I have a string that I would like to tokenize.
But the C strtok()
function requires my string to be a char*
.
How can I do this simply?
I tried:
token = strtok(str.c_str(), " ");
which fails because it turns it into a const char*
, not a char*
Best Solution
Or, as mentioned, use boost for more flexibility.