Guest User

Untitled

a guest
Feb 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class String
  2. def to_numeric
  3. int = Integer(self) rescue nil
  4. if int and int.to_s == self
  5. int
  6. else
  7. Float(self) rescue 0.0
  8. end
  9. end
  10. end
Add Comment
Please, Sign In to add comment