Lingua::EN::StopWords - Typical stop words for an English corpus


Lingua-EN-Segmenter documentation  | view source Contained in the Lingua-EN-Segmenter distribution.

Index


NAME

Top

Lingua::EN::StopWords - Typical stop words for an English corpus

SYNOPSIS

Top

  use Lingua::EN::StopWords qw(%StopWords);

  my @words = ...;

  # Print non-stopwords in @words
  print join " ", grep { !$StopWords{$_} } @words; 

DESCRIPTION

Top

See synopsis.

AUTHORS

Top

David James <splice@cpan.org>

The stopword list was taken from http://www.askeric.org/Eric/Help/stop.shtml (The original stopword list was in the public domain)

SEE ALSO

Top

Lingua::EN::Segmenter::TextTiling, Lingua::EN::Segmenter::Baseline, Lingua::EN::Segmenter::Evaluator, http://www.cs.toronto.edu/~james

LICENSE

Top

  Copyright (c) 2002 David James
  All rights reserved.
  This program is free software; you can redistribute it and/or
  modify it under the same terms as Perl itself.


Lingua-EN-Segmenter documentation  | view source Contained in the Lingua-EN-Segmenter distribution.