Help for this page

Select Code to Download


  1. or download this
    my %count;
    
    ...
        $count{$3}++ if $3;
     }
    }
    
  2. or download this
    my %hashes_for;  # More sensible name
    
    ...
    }
    
    # You can now use scalar(@{$hashes_for{whatever}}) instead of $count{w
    +hatever}