Help for this page

Select Code to Download


  1. or download this
    print "'$str' starts with lowercase\n!" if substr($str,0,1) =~ /[a..z]
    +/;
    
  2. or download this
    print "Only -+()0..9 allowed!\n" if $str =~ /[^+-()0..9]/;