Java has a convenient split method:
String str = "The quick brown fox";
String[] results = str.split(" ");
Is there an easy way to do this in C++?
|
5
|
|
|
|
|
|
Your simple case can easily be built using the |
||
|
|
|
|
There is no direct way to do this. Refer this code project source code to find out how to build a class for this. |
||
|
|
|
|
Here is a sample tokenizer class that might do what you want
Example:
|
|||
|
|
|
|
If you're willing to use C, you can use the strtok function. You should pay attention to multi-threading issues when using it. |
||||||
|
|
|
Here's a real simple one:
|
||
|
|
|
|
I thought that was what the
EDIT: oops! that should have been:
|
||||
|
|
|
You can use streams, iterators, and the copy algorithm to do this fairly directly.
|
||
|
|
Use strtok. In my opinion, there isn't a need to build a class around tokenizing unless strtok doesn't provide you with what you need. It might not, but in 15+ years of writing various parsing code in C and C++, I've always used strtok. Here is an example
A few caveats (which might not suit your needs). The string is "destroyed" in the process, meaning that EOS characters are placed inline in the delimter spots. Correct usage might require you to make a non-const version of the string. You can also change the list of delimiters mid parse. In my own opinion, the above code is far simpler and easier to use than writing a separate class for it. To me, this is one of those functions that the language provides and it does it well and cleanly. It's simply a "C based" solution. It's appropriate, it's easy, and you don't have to write a lot of extra code :-) |
||
|
|
|
|
The boost tokenizer class can make this sort of thing quite simple:
|
|||
|
|
|
|
boost has a strong split function: |
||
|
|
|
|
For simple stuff I just use the following:
Cowardly disclaimer: I write real-time data processing software where the data comes in through binary files, sockets, or some API call (I/O cards, camera's). I never use this function for something more complicated or time-critical than reading external configuration files on startup. |
||
|
|
|
|
I was originally writing a response to Doug's question: C++ Strings Modifying and Extracting based on Separators (closed) But since Martin York closed that question with a pointer over here... I'll just generalize my code. No offense folks, but for such a simple problem, you are making things way too complicated. There are a lot of reasons to use BOOST. But for something this simple, it's like hitting a fly with a 20# sledge.
E.g.: (For Doug's case.)
And yes, we could have split() return a new vector rather than passing one in. It's trivial to wrap & overload. But depending on what I'm doing, I often find it better to re-use pre-existing objects rather than always creating new ones. (Just as long as I don't forget to empty the vector in between!) Reference: http://www.cplusplus.com/reference/string/string/ |
||
|
|
|
|
Another quick way is to use getline.. something like: stringstream ss("bla bla"); string s; while (getline(ss, s, ' ')) { cout << s << endl; } if you want, you can make a simple split() method returning a vector of string, which is really useful. |
||
|
|
|
|
MFC/ATL has a very nice tokenizer. From MSDN:
|
||
|
|