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 -

java - Openshift port-forwarding -

php - Symfony 2: "No route found for "GET /" - error on fresh installation -