Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            print "Not match\n";
        }
    }
    
  2. or download this
    $VAR1 = {
              'address' => 'Address: Melbourne',
    ...
              'name' => 'Name: Roger'
            };
    Not match
    
  3. or download this
    use strict;
    use warnings;
    ...
    sub taint_fields {
        return map { $_ ||= '.*' } @_;
    }