Help for this page

Select Code to Download


  1. or download this
    my $tableList = map qr/$_/i,
                    join '|',
    ...
    for my $Q (@fileList) {
       push @tableUsed, $Q =~ /$tableList/g;
    }
    
  2. or download this
    my $tableList = map qr/$_/i,
                    join '|',
    ...
    }
    
    my @tableUsed = sort keys %tableUsed;