Help for this page

Select Code to Download


  1. or download this
    $hash{$word1}{$word2}{$word3} = $count
    
  2. or download this
    $hash{$word1}{$word2}{$word3} =
        { count => $count,
          freq  => $frequency }
    
  3. or download this
    $hash{$word1}{$word2} =
        {
    ...
                         $word3 => $count,
                     }
        }
    
  4. or download this
    $hash{$word1}{$word2}{total_counts}++;
    $hash{$word1}{$word2}{words}{$word3}++;