Help for this page

Select Code to Download


  1. or download this
    open( LIST, "stopwords.txt" ) or die "$!";
    my @stopwords = <LIST>;
    ...
    
    # Create an element in the hash for each stop word.
    undef @stopwords{@stopwords};
    
  2. or download this
    # Create an element in the hash for each stop word.
    my %stopwords;
    ...
       chomp;
       undef $stopwords{$_};
    }