Help for this page

Select Code to Download


  1. or download this
    foreach $word( @termList )
    {
    ...
            # Record occurrence of term
        }
    }
    
  2. or download this
    foreach $word ( keys $termHash )
    {
        $document =~ s/$word/$termHash{ $word }/g;
    }