I have a string that I would like to tokenize. But the strtok() function requires my string to be a char*.
How can I do this quickly?
token = strtok(str.c_str(), " "); fails because it turns it into a const char*, not a char*
|
2
|
I have a string that I would like to tokenize. But the strtok() function requires my string to be a char*. How can I do this quickly? token = strtok(str.c_str(), " "); fails because it turns it into a const char*, not a char* |
|||
|
|
|
|
|
||||||
|
|
|
Or, as mentioned, use boost for more flexibility. |
||||
|
|
|
Duplicate the string, tokenize it, then free it.
|
||||||||
|
|
|
I suppose the language is C, or C++... strtok, IIRC, replace separators with \0. That's what it cannot use a const string. To workaround that "quickly", if the string isn't huge, you can just strdup() it. Which is wise if you need to keep the string unaltered (what the const suggest...). On the other hand, you might want to use another tokenizer, perhaps hand rolled, less violent on the given argument. |
||
|
|
|
|
Assuming that by "string" you're talking about std::string in C++, you might have a look at the Tokenizer package in Boost. |
||
|
|
|
|
First off I would say use boost tokenizer. But both the above have already been covered.
|
||
|
|
|
|
There is a more elegant solution. With std::string you can use resize() to allocate a suitably large buffer, and &s[0] to get a pointer to the internal buffer. At this point many fine folks will jump and yell at the screen. But this is the fact. About 2 years ago the library working group decided (meeting at Lillehammer) that just like for std::vector, std::string should also formally, not just in practice, have a guaranteed contiguous buffer. The other concern is does strtok() increases the size of the string. The MSDN documentation says: Each call to strtok modifies strToken by inserting a null character after the token returned by that call. But this is not correct. Actually the function replaces the first occurrence of a separator character with \0. No change in the size of the string. If we have this string: one-two---three--four we will end up with one\0two\0--three\0-four So my solution is very simple:
Read the discussion on http://www.archivum.info/comp.lang.c++/2008-05/02889/does_std::string_have_something_like_CString::GetBuffer |
|||
|
|
|
|
To start with, you may want to mention the language involved. But given your syntax, whatever language you are talking about is very likely to already have a tokenize built for the standard String class. Use that. Edit: I mentioned Split, but of course you'll have to be using managed C++ in Visual Studio for that to work. You can look around for standard library tokenizes as well if you need a more cross-platform solution. Some posters do not seem to feel you need to provide any data on the language used for any question, but I say this - how is a user with a similar issue supposed to find the answer later if they are searching by language? You should all remember that Stack Overflow is not here to answer one users question, but many users hereafter... At least use the C++ tag (which I just realized I had the power to add thanks to the community wiki model here, and have done so). |
||||||
|
|
|
EDIT: usage of const cast is only used to demonstrate the effect of You should not use
After the call to
Therefore you have to resort to native mechanism, duplication of the string or an third party library as previously mentioned. |
||||||||||
|