Help for this page

Select Code to Download


  1. or download this
    my $regex   = qr/abcde/;
    
  2. or download this
    sub untaint_name {
    # replace non-word chars with nothing
    ...
               $name    =~ s/\W//g;
        return $name;
    };