perl - Detect letter where number was expected -


how can detect , show error if put letter , program expects number?

a regexp match makes easy. searching character isn't numeral or arithmetic symbol:

if ( $input =~ /[^0-9+*/-]/ ) {   print "incorrect character detected!\n" } 

literally letter:

if ( $input =~ /[a-za-z]/ ) {   print "incorrect character detected!\n" } 

Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

Kivy: Swiping (Carousel & ScreenManager) -