in reply to
Minor querry!!
You probably want something like:
if($a =~ /\D/) { # Not a number }
[download]
The /D matches non-digits, so this will be true if $a contains any non-digits.
Comment on
Re: Minor querry!!
Download
Code
In Section
Seekers of Perl Wisdom