Search Results

1
vote

How do I tell if a variable has a numeric value in Perl?

Not perfect, but you can use a regex: sub isnumber { shift =~ /^-?\d+\.?\d*$/; } …