Help for this page

Select Code to Download


  1. or download this
    WORD:
    foreach $word (@data)
    ...
    
       push(@lessWords, $word);
    }
    
  2. or download this
    my %stops = map {$_,undef} @stopwords;
    
    ...
        next if exists $stops{$word};
        push(@lessWords, $word);
    }