Hi in C++ if i have a string, how can I split this into tokens?
|
2
|
|||
|
|
|
It depends on how complex the token delimiter is and if there are more than one. For easy problems, just use std::istringstream and std::getline. For more complex tasks or if you want to iterate the tokens in an STL-compliant way, use Boost's Tokenizer. Another possibility (although messier than either of these two) is to set up a while loop that calls std::string::find and updates the position of the last found token to be the start point for searching for the next. But this is probably the most bug-prone of the 3 options. |
||
|
|
|
|
Try using stringstream:
Check out my answer to your last question: |
||
|
|
|
|
this works nicely for me :), it puts the results in elems. delim can be any char.
|
||||
|
|
|
You can use the C function strtok:
The Boost Tokenizer will also do the job:
|
||
|
|
|
With this Mingw distro that includes Boost:
|
||
|
|
|
|
See also boost::split from String Algo library
string str1("hello abc-*-ABC-*-aBc goodbye");
vector<string> tokens;
boost::split(tokens, str1, boost::is_any_of("-*"));
// tokens == { "hello abc","ABC","aBc goodbye" }
|
|||
|
|
