Help for this page

Select Code to Download


  1. or download this
    if( $line =~ /$keyword/ ) {
        $Counter{ $keyword } ++;
        ...
    
  2. or download this
    # Initialize the counter
    my %Counter = map { $_, [] } @keywords;
    ...
        push @{ $Counter{ $keyword } }, $.;
        ...
        }