Ruby est int
1.is_a? Integer
=> true
"[email protected]".is_a? Integer
=> false
nil.is_a? Integer
=> false
Hungry Hedgehog
1.is_a? Integer
=> true
"[email protected]".is_a? Integer
=> false
nil.is_a? Integer
=> false
12.is_a? Numeric
class String
def numeric?
Float(self) != nil rescue false
end
end
"Hello World!".numeric?