Skip to content

Instantly share code, notes, and snippets.

@bakkiraju
Created April 3, 2020 20:52
Show Gist options
  • Save bakkiraju/4e71a62d6545f9640d596889d457d5ad to your computer and use it in GitHub Desktop.
Save bakkiraju/4e71a62d6545f9640d596889d457d5ad to your computer and use it in GitHub Desktop.
C++ Cheat sheet
String tokenizing in c++
=======================
#include <sstream>
string s = "data structures and algorithms practice";
istringstream iss;
iss.str(s);
string token;
while (getline(iss, token, ' '))
{
oss << token << " ";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment