Skip to content

Instantly share code, notes, and snippets.

@ilpropheta
Created January 1, 2017 20:17
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 ilpropheta/669c155aa24b6eedf6bb31ee0602f22e to your computer and use it in GitHub Desktop.
Save ilpropheta/669c155aa24b6eedf6bb31ee0602f22e to your computer and use it in GitHub Desktop.
string url("website/number1/1/number2/2"); // certainly null-terminated
string_view tokens = split(url, "/");
auto number1AsInt = strtol(tokens[2].data(), nullptr, 10); // 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment