Skip to content

Instantly share code, notes, and snippets.

@ygabo
Created August 26, 2013 06:19
Show Gist options
  • Save ygabo/6338513 to your computer and use it in GitHub Desktop.
Save ygabo/6338513 to your computer and use it in GitHub Desktop.
Stringstream splitting words
int main(){
string x = "helllo there sd";
string d;
stringstream ss(x);
while( getline(ss, d, ' ') ){
cout << d << endl;
}
cin.get();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment