Skip to content

Instantly share code, notes, and snippets.

@tanvir002700
Last active July 1, 2016 21:27
Show Gist options
  • Save tanvir002700/3367565348bda5f1998d638e61443cf9 to your computer and use it in GitHub Desktop.
Save tanvir002700/3367565348bda5f1998d638e61443cf9 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
string input = "abc,def,ghi";
stringstream ss(input);
string token;
while(std::getline(ss, token, ','))
{
cout << token << '\n';
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment