if ( $scalar =~ /^[12345]+$/ ) { print "match"; } else { print "no match"; } #### if ( $scalar !~ /[^12345]/ ) { print "match"; }