Help for this page

Select Code to Download


  1. or download this
    for my $hElem (@{$matches{$element}{$sitekey}}) {
        print "...in \$hElem\n";
    ...
            push (@arrayA, $hElem);
            }
        }
    
  2. or download this
    for my $hElem (@{$matches{$element}{$sitekey}}) {
        next unless ($hElem >= $lowerlimit);
    ...
        print "...in \$hElem\n"   
        push (@arrayA, $hElem);
        }