Answers for "check is the string is s number in ruby"

-1

ruby check if string is integer

class String
  def numeric?
    Float(self) != nil rescue false
  end
end
"Hello World!".numeric?
Posted by: Guest on June-16-2020

Code answers related to "check is the string is s number in ruby"

Browse Popular Code Answers by Language