ruby is_numeric? extension to String
1 2 class String 3 def is_numeric? 4 Float self rescue false 5 end 6 end
DZone Snippets > sikelianos > string
12738 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 class String 3 def is_numeric? 4 Float self rescue false 5 end 6 end