Skip to content

Instantly share code, notes, and snippets.

@conrjac
Created April 15, 2013 11:12
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save conrjac/5387376 to your computer and use it in GitHub Desktop.
Save conrjac/5387376 to your computer and use it in GitHub Desktop.
C++ Split String and store in vector
int main()
{
std::string input = "abc,def,ghi";
std::istringstream ss(input);
std::string token;
vector<string> playerInfoVector;
while(std::getline(ss, token, ',')) {
playerInfoVector.push_back(token);
std::cout << token << '\n';
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment