Help for this page

Select Code to Download


  1. or download this
    $found = 0;
    $hash{1} = '*.doc';
    ...
    map {
         $found = 1 if $file =~ /$_/;
    } values(%hash);
    
  2. or download this
    $found = 0;
    $hash{1} = '*.doc';
    ...
         $string .= $_ . "|";
    }
    $found = 1 if $file =~ /$string/;