Skip to content

Instantly share code, notes, and snippets.

@thiagomg
Created December 9, 2015 13:39
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 thiagomg/d9877aaac2f86b7b1759 to your computer and use it in GitHub Desktop.
Save thiagomg/d9877aaac2f86b7b1759 to your computer and use it in GitHub Desktop.
Legibilidade com C++14 - get_numeric
template<typename T>
T get_numeric(const T &input)
{
T output;
std::for_each(begin(input), end(input), [&output](auto c) {
if( c >= '0' && c <= '9' ) output.push_back(c);
});
return output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment