Skip to content

Instantly share code, notes, and snippets.

@nwjsmith
Created September 21, 2011 19:10
Show Gist options
  • Save nwjsmith/1233015 to your computer and use it in GitHub Desktop.
Save nwjsmith/1233015 to your computer and use it in GitHub Desktop.
def digits(string)
string.each_car.select { |character| /\d/.match(character).present? }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment