Help for this page

Select Code to Download


  1. or download this
    my @items = ();
    foreach my $subset ( keys %lookingFor )
    ...
        local $" = q{|};
        $rxMatchItems = qr{(?:@items)};
    }
    
  2. or download this
    while ( <$fh> )
    {
        next unless m{$rxMatchItems};
        print $writeFh $_;
    }