Created
April 15, 2013 11:12
-
-
Save conrjac/5387376 to your computer and use it in GitHub Desktop.
C++ Split String and store in vector
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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