Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
                    $reglist{$regex}() if /$regex/;
            }
    }
    
  2. or download this
    use warnings;
    
    ...
      my @which = map { defined $hits[$_] ? $_ : "" } 0..@hits-1;
      print "$_: @which\n";
    }