up vote 238 down vote favorite
166
share [g+] share [fb]

What's the most elegant way to split a string in C++? The string can be assumed to be composed of words separated by whitespace.

(Note that I'm not interested in C string functions or that kind of character manipulation/access. Also, please give precedence to elegance over efficiency in your answer.)

The best solution I have right now is:

#include <iostream>
#include <sstream>
#include <string>
using namespace std;

int main()
{
    string s("Somewhere down the road");
    istringstream iss(s);

    do
    {
        string sub;
        iss >> sub;
        cout << "Substring: " << sub << endl;
    } while (iss);

    return 0;
}
link|improve this question

62% accept rate
50  
Dude... Elegance is just a fancy way to say "efficiency-that-looks-pretty" in my book. Don't shy away from using C functions and quick methods to accomplish anything just because it is not contained within a template ;) – nlaq Oct 25 '08 at 9:04
3  
Your code won't compile (sometimes the pertinent variable is called "subs", sometimes "substr") but there's a more serious off-by-one problem: it will always try to output one more token than actually exists because you only test iss after printing the token. – j_random_hacker Aug 24 '09 at 8:57
2  
while (iss) { string subs; iss >> subs; cout << "Substring: " << sub << endl; } – Eduardo León Sep 29 '09 at 15:47
13  
How about some of the examples from the following: codeproject.com/KB/recipes/Tokenizer.aspx They are very efficient and somewhat elegant. – Matthieu N. Sep 15 '10 at 3:21
@Beh I think your comment would be a good answer. – foraidt Sep 15 '10 at 5:49
show 1 more comment
feedback

27 Answers

up vote 161 down vote accepted

FWIW, here's another way to extract tokens from an input string, relying only on standard library facilities. It's an example of the power and elegance behind the design of the STL.

#include <iostream>
#include <string>
#include <sstream>
#include <algorithm>
#include <iterator>

int main() {
    using namespace std;
    string sentence = "Something in the way she moves...";
    istringstream iss(sentence);
    copy(istream_iterator<string>(iss),
             istream_iterator<string>(),
             ostream_iterator<string>(cout, "\n"));
}

Instead of copying the extracted tokens to an output stream, one could insert them into a container, using the same generic copy algorithm.

vector<string> tokens;
copy(istream_iterator<string>(iss),
         istream_iterator<string>(),
         back_inserter<vector<string> >(tokens));
link|improve this answer
10  
Your solution doesn't even need Boost. Very cool! :-) – Ashwin Oct 27 '08 at 2:54
22  
Is it possible to specify a delimiter for this? Like for instance splitting on commas? – l3dx Aug 6 '09 at 11:49
4  
@l3dx: it seems that the parameter "\n" is the delimiter. This code is very nice, but I would like to know better about it. Maybe somebody could explain each line of that snippet? – Jonathan Dec 11 '09 at 17:30
7  
@Jonathan: \n is not the delimiter in this case, it's the deliminer for outputting to cout. – huy Feb 3 '10 at 12:37
45  
This is a poor solution as it doesn't take any other delimiter, therefore not scalable and not maintable. – Kinderchocolate Jan 10 '11 at 3:57
show 12 more comments
feedback

Since everybody is already using Boost:

#include <boost/algorithm/string.hpp>
std::vector<std::string> strs;
boost::split(strs, "string to split", boost::is_any_of("\t "));

I bet this is much faster than the stringstream solution. And since this is a generic template function it can be used to split other types of strings (wchar, etc. or UTF-8) using all kinds of delimiters.

See the documentation for details.

link|improve this answer
10  
Speed is irrelevant here, as both of these cases are much slower than a strtok-like function. – Tom Mar 1 '09 at 16:51
1  
This is practical and quick enough if you know the line will contain just a few tokens, but if it contains many then you will burn a ton of memory (and time) growing the vector. So no, it's not faster than the stringstream solution -- at least not for large n, which is the only case where speed matters. – j_random_hacker Aug 24 '09 at 9:02
3  
And for those who don't already have boost... bcp copies over 1,000 files for this :) – romkyns Jun 9 '10 at 20:12
7  
strtok is a trap. its thread unsafe. – tuxSlayer Apr 23 '11 at 3:30
15  
Everybody is not using Boost. – Isaac May 20 '11 at 16:07
show 5 more comments
feedback

I use this to split string by a delim. The first puts the results in an already constructed vector, the second returns a new vector.

std::vector<std::string> &split(const std::string &s, char delim, std::vector<std::string> &elems) {
    std::stringstream ss(s);
    std::string item;
    while(std::getline(ss, item, delim)) {
        elems.push_back(item);
    }
    return elems;
}


std::vector<std::string> split(const std::string &s, char delim) {
    std::vector<std::string> elems;
    return split(s, delim, elems);
}

EDIT: Note that this solution does not skip empty tokens, so the following will find 4 items, one of which is empty:

std::vector<std::string> x = split("one:two::three", ':');
link|improve this answer
7  
Works brilliantly! Don't forget to import string, sstring and vector. – Paul Lammertsma Dec 7 '09 at 13:00
<3 the snippet. thanks a lot. – huy Jan 23 '10 at 21:59
4  
This hits the sweet spot for me - standard libraries, short, and lets me specify my delimiters. Thanks! – tfinniga Mar 29 '10 at 16:39
elegant solution, I always forget about this particular "getline", thou I do not believe it is aware of quotes and escape sequences. – boskom May 27 '10 at 13:32
3  
@Paul Lammertsma: Correction: Don't forget to include string, sstream and vector. – David Johnstone Mar 3 '11 at 3:58
show 5 more comments
feedback
string word;

istringstream iss(line, istringstream::in);

while( iss >> word )     
{

...

}

This is my favourite way to iterate through a string. You can do what you want per word.

link|improve this answer
Is it possible to declare word as a char? – abatishchev Jun 26 '10 at 17:23
Sorry abatishchev, C++ is not my strong point. But I imagine it would not be difficult to add an inner loop to loop through every character in each word. But right now I believe the current loop depends on spaces for word separation. Unless you know that there is only a single character between every space, in which case you can just cast "word" to a char... sorry I cant be of more help, ive been meaning to brush up on my C++ – gnomed Jun 30 '10 at 22:18
1  
if you declare word as a char it will iterate over every non-whitespace character. It's simple enough to try: stringstream ss("Hello World, this is*@#&$(@ a string"); char c; while(ss >> c) cout << c; – Wayne Werner Aug 4 '10 at 18:03
feedback

For those with whom it does not sit well to sacrifice all efficiency for code size and see "efficient" as a type of elegance, the following should hit a sweet spot (and I think the template container class is an awesomely elegant addition.):

template < class ContainerT >
void tokenize(const std::string& str, ContainerT& tokens,
              const std::string& delimiters = " ", const bool trimEmpty = false)
{
   std::string::size_type pos, lastPos = 0;
   while(true)
   {
      pos = str.find_first_of(delimiters, lastPos);
      if(pos == std::string::npos)
      {
         pos = str.length();

         if(pos != lastPos || !trimEmpty)
            tokens.push_back(ContainerT::value_type(str.data()+lastPos,
                  (ContainerT::value_type::size_type)pos-lastPos ));

         break;
      }
      else
      {
         if(pos != lastPos || !trimEmpty)
            tokens.push_back(ContainerT::value_type(str.data()+lastPos,
                  (ContainerT::value_type::size_type)pos-lastPos ));
      }

      lastPos = pos + 1;
   }
};

I usually choose to use std::vector<std::string> types as my second parameter (ContainerT)... but list<> is way faster than vector<> for when direct access is not needed, and you can even create your own string class and use something like std::list<SubString> where SubString does not do any copies for incredible speed increases.

It's more than double as fast as the fastest tokenize on this page and almost 5 times faster than some others. Also with the perfect parameter types you can eliminate all string and list copies.

Additionally it does not do the (extremely inefficient) return of result, but rather it passes the tokens as a reference, thus also allowing you to build up tokens using multiple calls if you so wished.

Lastly it allows you to specify whether to trim empty tokens from the results via a last optional parameter.

All it needs is std::string... the rest are optional. It does not use streams or the boost library, but is flexible enough to be able to accept some of these foreign types naturally.

Marius.

link|improve this answer
I'm quite a fan of this, but for g++ (and probably good practice) anyone using this will want typedefs and typenames: typedef ContainerT Base; typedef typename Base::value_type ValueType; typedef typename ValueType::size_type SizeType; Then to substitute out the value_type and size_types accordingly. – aws Nov 28 '11 at 21:41
feedback

This is similar to this question.

#include <iostream>
#include <string>
#include <boost/foreach.hpp>
#include <boost/tokenizer.hpp>

using namespace std;
using namespace boost;

int main(int argc, char** argv)
{
   string text = "token  test\tstring";

   char_separator<char> sep(" \t");
   tokenizer<char_separator<char>> tokens(text, sep);
   BOOST_FOREACH(string t, tokens)
   {
      cout << t << "." << endl;
   }
}
link|improve this answer
1  
Thanks for pointing that out. I didn't know this operation was called tokenizing, so it never occurred to me to search for that term :-) – Ashwin Oct 27 '08 at 2:48
feedback
#include <vector>
#include <string>
#include <sstream>

using namespace std;

int main()
{
    string str("Split me by whitespaces");
    string buf; // Have a buffer string
    stringstream ss(str); // Insert the string into a stream

    vector<string> tokens; // Create vector to hold our words

    while (ss >> buf)
        tokens.push_back(buf);
}
link|improve this answer
Very nice. Thank you. – Imran Jun 14 '11 at 14:59
Very clean, I'm surprised this doesn't get more upvotes! +1 – houbysoft Jun 28 '11 at 20:38
feedback

I like the following because it puts the results into a vector, supports a string as a delim and gives control over keeping empty values. But, it doesn't look as good then.


#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <iterator>
using namespace std;

vector<string> split(const string& s, const string& delim, const bool keep_empty = true) {
    vector<string> result;
    if (delim.empty()) {
        result.push_back(s);
        return result;
    }
    string::const_iterator substart = s.begin(), subend;
    while (true) {
        subend = search(substart, s.end(), delim.begin(), delim.end());
        string temp(substart, subend);
        if (keep_empty || !temp.empty()) {
            result.push_back(temp);
        }
        if (subend == s.end()) {
            break;
        }
        substart = subend + delim.size();
    }
    return result;
}

int main() {
    const vector<string> words = split("So close no matter how far", " ");
    copy(words.begin(), words.end(), ostream_iterator<string>(cout, "\n"));
}

Of course, Boost has a split() that works partially like that. And, if by 'white-space', you really do mean any type of white-space, using Boost's split with is_any_of() works great.

link|improve this answer
Not a perfect answer to his question, but that's exactly what I was looking for. Thanks! – user5722 Jul 1 '09 at 17:17
Great answer, elegant code with precisely everything that's needed. – Ilya Oct 12 '09 at 14:17
feedback

Yet another flexible and fast way

template<typename Operator>
void tokenize(Operator& op, const char* input, const char* delimiters) {
  const char* s = input;
  const char* e = s;
  while (*e != 0) {
    e = s;
    while (*e != 0 && strchr(delimiters, *e) == 0) ++e;
    if (e - s > 0) {
      op(s, e - s);
    }
    s = e + 1;
  }
}

To use it with a vector of strings:

class Appender : public std::vector<std::string> {
public:
  void operator() (const char* s, unsigned length) { 
    this->push_back(std::string(s,length));
  }
};

Appender v;
tokenize(v, "A number of words to be tokenized", " \t");

That's it! And that's just one way to use the tokenizer, like how to just count words:

class WordCounter {
public:
  WordCounter() : noOfWords(0) {}
  void operator() (const char*, unsigned) {
    ++noOfWords;
  }
  unsigned noOfWords;
};

WordCounter wc;
tokenize(wc, "A number of words to be counted", " \t"); 
ASSERT( wc.noOfWords == 7 );

Limited by imagination ;)

link|improve this answer
feedback

If you like to use boost, but want to use a whole string as delimiter (instead of single characters as in most of the previously proposed solutions), you can use the boost_split_iterator.

Example code including convenient template:

#include <iostream>
#include <vector>
#include <boost/algorithm/string.hpp>

template<typename _OutputIterator>
inline void split(
    const std::string& str, 
    const std::string& delim, 
    _OutputIterator result)
{
    using namespace boost::algorithm;
    typedef split_iterator<std::string::iterator> It;

    for(It iter=make_split_iterator(str, first_finder(delim, is_equal()));
            iter!=It();
            ++iter)
    {
        *(result++) = boost::copy_range<std::string>(*iter);
    }
}

int main(int argc, char* argv[])
{
    using namespace std;

    vector<string> splitted;
    split("HelloFOOworldFOO!", "FOO", back_inserter(splitted));

    // or directly to console, for example
    split("HelloFOOworldFOO!", "FOO", ostream_iterator<string>(cout, "\n"));
    return 0;
}
link|improve this answer
feedback

The STL does not have such a method available already.

However, you can either use C's strtok function by using the string.c_str() member, or you can write your own. Here is a code sample I found after a quick google search ("STL string split"):

void Tokenize(const string& str,
                      vector<string>& tokens,
                      const string& delimiters = " ")
{
    // Skip delimiters at beginning.
    string::size_type lastPos = str.find_first_not_of(delimiters, 0);
    // Find first "non-delimiter".
    string::size_type pos     = str.find_first_of(delimiters, lastPos);

    while (string::npos != pos || string::npos != lastPos)
    {
        // Found a token, add it to the vector.
        tokens.push_back(str.substr(lastPos, pos - lastPos));
        // Skip delimiters.  Note the "not_of"
        lastPos = str.find_first_not_of(delimiters, pos);
        // Find next "non-delimiter"
        pos = str.find_first_of(delimiters, lastPos);
    }
}

Taken from: http://oopweb.com/CPP/Documents/CPPHOWTO/Volume/C++Programming-HOWTO-7.html

If you have questions about the code sample, leave a comment and I will explain.

And just because it does not implement a typedef called iterator or overload the << operator does not mean it is bad code. I use the C functions quite frequently. For example, printf and scanf both are faster then cin and cout (significantly), the fopen syntax is a lot more friendly for binary types, and they also tend to produce smaller EXEs.

Don't get sold on this "Elegance over performance" deal.

link|improve this answer
I'm aware of the C string functions and I'm aware of the performance issues too (both of which I've noted in my question). However, for this specific question, I'm looking for an elegant C++ solution. – Ashwin Oct 25 '08 at 9:16
... and you dont want to just build a OO wrapper over the C functions why? – nlaq Oct 25 '08 at 9:42
3  
@Nelson LaQuet: Let me guess: Because strtok is not reentrant? – paercebal Oct 25 '08 at 9:52
10  
@Nelson don't ever pass string.c_str() to strtok! strtok trashes the input string (inserts '\0' chars to replace each foudn delimiter) and c_str() returns a non-modifiable string. – Evan Teran Oct 25 '08 at 18:19
1  
@Nelson: That array needs to be of size str.size() + 1 in your last comment. But I agree with your thesis that it's silly to avoid C functions for "aesthetic" reasons. – j_random_hacker Aug 24 '09 at 9:08
show 3 more comments
feedback

So far I used the one in Boost, but I needed something that doesn't depends on it, so I came to this:

static void Split(std::vector<std::string>& lst, const std::string& input, const std::string& separators, bool remove_empty = true)
{
    std::ostringstream word;
    for (size_t n = 0; n < input.size(); ++n)
    {
        if (std::string::npos == separators.find(input[n]))
            word << input[n];
        else
        {
            if (!word.str().empty() || !remove_empty)
                lst.push_back(word.str());
            word.str("");
        }
    }
    if (!word.str().empty() || !remove_empty)
        lst.push_back(word.str());
}

A good point is that in separators you can pass more than one character.

link|improve this answer
feedback

The code below uses strtok() to split a string into tokens and stores the tokens in a vector.

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>

using namespace std;


char one_line_string[] = "hello hi how are you nice weather we are having ok then bye";
char seps[]   = " ,\t\n";
char *token;



int main()
{
   vector<string> vec_String_Lines;
   token = strtok( one_line_string, seps );

   cout << "Extracting and storing data in a vector..\n\n\n";

   while( token != NULL )
   {
      vec_String_Lines.push_back(token);
      token = strtok( NULL, seps );
   }
     cout << "Displaying end result in  vector line storage..\n\n";

    for ( int i = 0; i < vec_String_Lines.size(); ++i)
    cout << vec_String_Lines[i] << "\n";
    cout << "\n\n\n";


return 0;
}
link|improve this answer
feedback

Using stringstream as you have works perfectly fine, and do exactly what you wanted. If you're just looking for different way of doing things though, you can use find/find_first_of and substring.

#include <iostream>
#include <string>

int main()
{
    std::string s("Somewhere down the road");

    std::string::size_type prev_pos = 0, pos = 0;
    while( (pos = s.find(' ', pos)) != std::string::npos )
    {
        std::string substring( s.substr(prev_pos, pos-prev_pos) );

        std::cout << substring << '\n';

        prev_pos = ++pos;
    }
    std::string substring( s.substr(prev_pos, pos-prev_pos) ); // Last word
    std::cout << substring << '\n';
}
link|improve this answer
feedback

Here's another way of doing it..

void split_string(string text,vector<string>& words)
{
  int i=0;
  char ch;
  string word;

  while(ch=text[i++])
  {
    if (isspace(ch))
    {
      if (!word.empty())
      {
        words.push_back(word);
      }
      word = "";
    }
    else
    {
      word += ch;
    }
  }
  if (!word.empty())
  {
    words.push_back(word);
  }
}
link|improve this answer
feedback

I use this simpleton because we got our String class "special" (i.e. not standard):

void splitString(const String &s, const String &delim, std::vector<String> &result) {
    const int l = delim.length();
    int f = 0;
    int i = s.indexOf(delim,f);
    while (i>=0) {
        String token( i-f > 0 ? s.substring(f,i-f) : "");
        result.push_back(token);
        f=i+l;
        i = s.indexOf(delim,f);
    }
    String token = s.substring(f);
    result.push_back(token);
}
link|improve this answer
feedback

Here's another solution. It's compact and reasonably efficient:

void split(vector<string> &tokens, const string &text, char sep) {
  int start = 0, end = 0;
  while ((end = text.find(sep, start)) != string::npos) {
    tokens.push_back(text.substr(start, end - start));
    start = end + 1;
  }
  tokens.push_back(text.substr(start));
}

It can easily be templatised to handle string separators, wide strings, etc. Here is a more generalized version, see it live: http://ideone.com/Omkue

#include <iostream>
#include <vector>
#include <iterator>

template <typename OutIt>
    OutIt split(const std::string &text, char sep, OutIt out)
{
    size_t start = 0, end = 0;

    while((end = text.find(sep, start)) != std::string::npos)
    { 
        *out++ = text.substr(start, end - start);
        start = end + 1;
    }

    *out++ = text.substr(start);

    return out;
}

int main(int argc, char* argv[])
{
    std::vector<std::string> vec;
    split("Hello world !", ' ', std::back_inserter(vec));
    split("Hello world !", ' ', std::ostream_iterator<std::string>(std::cout, "\n"));

    return 0;
}
link|improve this answer
The first version is simple and gets the job done perfectly. The only change I would made would be to return the result directly, instead of passing it as a parameter. – gregschlom Jan 19 at 2:25
feedback

There is a function named strtok.

#include<string>
using namespace std;

vector<string> split(char* str,const char* delim)
{
    char* token = strtok(str,delim);

    vector<string> result;

    while(token != NULL)
    {
        result.push_back(token);
        token = strtok(NULL,delim);
    }
    return result;
}
link|improve this answer
strtok is from the C standard library, not C++. It is not safe to use in multithreaded programs. It modifies the input string. – Kevin Panko Jun 14 '10 at 14:07
@Kevin Panko: Thanks! Would you please explain why is it not safe to use in multi-threaded programs? – Pratik Deoghare Jun 14 '10 at 16:17
7  
Because it stores the char pointer from the first call in a static variable, so that on the subsequent calls when NULL is passed, it remembers what pointer should be used. If a second thread calls strtok when another thread is still processing, this char pointer will be overwritten, and both threads will then have incorrect results. mkssoftware.com/docs/man3/strtok.3.asp – Kevin Panko Jun 14 '10 at 17:27
Thanks @Kevin Panko!! for the eye opener :) – Pratik Deoghare Jun 15 '10 at 7:18
as mentioned before strtok is unsafe and even in C strtok_r is recommended for use – systemsfault Jul 6 '10 at 12:17
show 1 more comment
feedback

Much better way to do this. Can take any character, doesn't split lines unless you want. No special libraries needed(well besides std, but who really considers that an extra library), no pointers, no references, it's static. Just simple plain C++.

#pragma once
#include <vector>
#include <sstream>
using namespace std;
class Helpers
{
public:
    static vector<string> split(string s, char delim) 
    {
        stringstream temp (stringstream::in | stringstream::out);
        vector<string> elems(0);
        if(s.size() == 0 || delim == 0)
            return elems;
        for each(char c in s)
        {
            if(c == delim)
            {
                elems.push_back(temp.str());
                temp = stringstream(stringstream::in | stringstream::out);
            }
            else
                temp << c;
        }
    if(temp.str().size() > 0)
        elems.push_back(temp.str());
        return elems;
    }
//splits string s with a list of delimiters in delims(it's just a list, like if we wanted to 
//    split at the following letters, a, b, c we would make delims="abc"
static vector<string> split(string s, string delims) 
{
    stringstream temp (stringstream::in | stringstream::out);
    vector<string> elems(0);
    bool found;
    if(s.size() == 0 || delims.size() == 0)
        return elems;
    for each(char c in s)
    {
        found = false;
        for each(char d in delims)
        {
            if(c == d)
            {
                elems.push_back(temp.str());
                temp = stringstream(stringstream::in | stringstream::out);
                found = true;
                break;
            }
        }
        if(!found)
            temp << c;
    }
    if(temp.str().size() > 0)
        elems.push_back(temp.str());
    return elems;
}
};
link|improve this answer
feedback

I like to use the boost/regex methods for this task since they provide maximum flexibility for specifying the splitting criteria.

#include <iostream>
#include <string>
#include <boost/regex.hpp>

int main() {
    std::string line("A:::line::to:split");
    const boost::regex re(":+"); // one or more colons

    // -1 means find inverse matches aka split
    boost::sregex_token_iterator tokens(line.begin(),line.end(),re,-1);
    boost::sregex_token_iterator end;

    for (; tokens != end; ++tokens)
        std::cout << *tokens << std::endl;
}
link|improve this answer
feedback

What about this:

#include <iostream>
#include <string>
#include <vector>

using namespace std;

vector<string> split(string str, const char delim) {
    vector<string> v;
    string tmp;
    string::iterator i;

    for(i = str.begin(); i <= str.end(); ++i) {
        if((const char)*i != delim  && i != str.end()) {
            tmp += *i; 
        } else {
            v.push_back(tmp);
            tmp = ""; 
        }   
    }   

    return v;
}
link|improve this answer
What's the edit about? – gibbz Jun 24 '11 at 18:42
feedback

This is my versión taken the source of Kev:

#include <string>
#include <vector>
void split(vector<string> &result, string str, char delim ) {
  string tmp;
  string::iterator i;
  result.clear();

  for(i = str.begin(); i <= str.end(); ++i) {
    if((const char)*i != delim  && i != str.end()) {
      tmp += *i;
    } else {
      result.push_back(tmp);
      tmp = "";
    }
  }
}

After, call the function and do something with it:

vector<string> hosts;
split(hosts, "192.168.1.2,192.168.1.3", ',');
for( size_t i = 0; i < hosts.size(); i++){
  cout <<  "Connecting host : " << hosts.at(i) << "..." << endl;
}
link|improve this answer
1  
This question was asked 3 years ago, and have over 20 answers -- we probably didn't need yet-another-answer. – Soren Jul 29 '11 at 1:53
feedback

See my answer here if you can use Qt.

link|improve this answer
feedback

Loop on getline with ' ' as the token.

link|improve this answer
feedback

The streamstream can be convenient if you need to parse the string by non-space symbols:

string s = "Name:JAck; Spouse:Susan; ...";
string dummy, name, spouse;

istringstream iss(s);
getline(iss, dummy, ':');
getline(iss, name, ';');
getline(iss, dummy, ':');
getline(iss, spouse, ';')
link|improve this answer
feedback

Recently I had to split a camel-cased word into subwords. There are no delimiters, just upper characters.

#include <string>
#include <list>
#include <locale> // std::isupper

template<class String>
const std::list<String> split_camel_case_string(const String &s)
{
    std::list<String> R;
    String w;

    for (String::const_iterator i = s.begin(); i < s.end(); ++i) {  {
        if (std::isupper(*i)) {
            if (w.length()) {
                R.push_back(w);
                w.clear();
            }
        }
        w += *i;
    }

    if (w.length())
        R.push_back(w);
    return R;
}

For example, this splits "AQueryTrades" into "A", "Query" and "Trades". The function works with narrow and wide strings. Because it respects the current locale it splits "RaumfahrtÜberwachungsVerordnung" into "Raumfahrt", "Überwachungs" and "Verordnung".

Note std::upper should be really passed as function template argument. Then the more generalized from of this function can split at delimiters like ",", ";" or " " too.

link|improve this answer
feedback

For a ridiculously large and probably redundant version, try a lot of for loops.

string stringlist[10];
int count = 0;

for (int i = 0; i < sequence.length(); i++)
{
	if (sequence[i] == ' ')
	{
		stringlist[count] = sequence.substr(0, i);
		sequence.erase(0, i+1);
		i = 0;
		count++;
	}
	else if (i == sequence.length()-1)	// Last word
	{
		stringlist[count] = sequence.substr(0, i+1);
	}
}

It isn't pretty, but by and large (Barring punctuation and a slew of other bugs) it works!

link|improve this answer
10  
I was tempted to +1 this answer for its simple, readable code (which I presume rubbed an elegantophile the wrong way, hence the -1), but then I saw that you allocated a fixed-size array of strings to hold the tokens. Come on, you know that's gonna break at the worst possible moment! :) – j_random_hacker Aug 24 '09 at 9:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.