Help for this page

Select Code to Download


  1. or download this
    ++$seen{lc($_)} for split /\s+/, $zipFile;
    if ($seen{this} && $seen{$that}) {
        ....
    }
    
  2. or download this
    if ($zipFile =~ /\bthis\b/i && $zipFile =~ /\bthat\b/i) {
        ....
    }