Help for this page

Select Code to Download


  1. or download this
    sub check_name {
        my $name = $_[0];
        if ($name =~ /^[A-Z][A-Za-z\-']{2,40}/s) {
    ...
            return "Friendly message...";
        }
    }
    
  2. or download this
    # was $app{"first_name"} = ""; switch to next line
    undef $app{"first_name"};