Help for this page

Select Code to Download


  1. or download this
    $/ = undef;
    
  2. or download this
    if (/$i/g)
    
  3. or download this
    my $regex = join '|', map quotemeta, @ids;
    while (<FILE>) {
        $counts{$1}++ if /($regex)/;
    }