Help for this page

Select Code to Download


  1. or download this
    my %matches;
    my $section;
    ...
      $section = $1;
    }
    push @{ $matches{$section} }, $line;
    
  2. or download this
    use Data::Dumper;
    
    ...
        }
        return \%matches;
    }