- Part-of-speech tagger for English natural language processing - Synopsis: # Create a parser object my $p = new Lingua::EN::Tagger; # Add part of speech tags to a text my $tagged_text = $p->add_tags( $text ); # Get a list of all nouns and noun phrases with occurence counts my %word_list = $p->get_words( $text ); # Get a readable version of the tagged text my $readable_text = $p->get_readable( $text );
State Changed From-To: open->closed Committed, thanks.