Skip to content

Instantly share code, notes, and snippets.

@s1s1ty
Created March 6, 2022 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s1s1ty/4bd30a295418a68b44350642d3fb6ded to your computer and use it in GitHub Desktop.
Save s1s1ty/4bd30a295418a68b44350642d3fb6ded to your computer and use it in GitHub Desktop.
st
#include <sstream>
stringstream ss;
string s; //main string
string newString; //new string
ss << s; //assign s to ss
while(ss >> newString) { // Spilit string
cout<< newString <<endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment