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