четверг, 15 сентября 2011 г.

Snippet for splitting string in C++

#include < string >
#include < sstream >
#include < iostream >

using namespace std;

int main() {
    string s, word = "Hello world";

    stringstream ss(word);    

    while (getline(ss, s, ' ')) {
        cout << s << endl;
    }
}

Комментариев нет:

Отправить комментарий