Lingua::EN::Stopwords
Provides methods to see if word is contained in a list of English stop words.
Installation
panda install Lingua::EN::Stopwords
Usage
use Lingua::EN::Stopwords::Short;
# Now we have an array:
say %stop-words;
# We can also check for words
say 'is dog a stop word? ' ~ is-stop-word('dog');
Options are Short, Long, and SQL.
Acknowledgements