Skip to content

Instantly share code, notes, and snippets.

@jschoolcraft
Created January 21, 2010 15:38
Show Gist options
  • Select an option

  • Save jschoolcraft/282887 to your computer and use it in GitHub Desktop.

Select an option

Save jschoolcraft/282887 to your computer and use it in GitHub Desktop.
def elad_to_i(num)
num =~ /^\d+$/ ? num.to_i : "fuck you asshole, it's not a number"
end
irb(main):013:0> elad_to_i("5")
=> 5
irb(main):014:0> elad_to_i("elad")
fuck you asshole, it's not a number
=> nil
irb(main):015:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment