- or download this
my %stopwords = map { $_ => undef } @stopwords;
$/=" ";
...
chomp;
push @lessWords, $_ unless exists $stopwords{$_};
}
- or download this
my %stopwords = map { $_ => undef } @stopwords;
$/=" ";
@lessWords = grep( exists $stopwords{$_}, map {chomp; $_} <> )