Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ch-hristov
Created November 5, 2015 20:18
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 ch-hristov/a4a6ca3b384a06a18add to your computer and use it in GitHub Desktop.
Save ch-hristov/a4a6ca3b384a06a18add to your computer and use it in GitHub Desktop.
Split string by delimiter C++
std::vector<std::string> split(const std::string &text, char sep) {
std::vector<std::string> tokens;
int start = 0, end = 0;
while ((end = text.find(sep, start)) != std::string::npos) {
tokens.push_back(text.substr(start, end - start));
start = end + 1;
}
tokens.push_back(text.substr(start));
return tokens;
}
//link http://stackoverflow.com/a/7408245/4487530
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment