2

I have a long list of words(only alphabets) and I need only nouns in them. Whats the best way to do this in PHP?

rkt
  • 1,171
  • 2
  • 9
  • 18

2 Answers2

4

Download the wordnet library (http://wordnet.princeton.edu/), and compare your list against theirs.

Bob Baddeley
  • 2,264
  • 1
  • 16
  • 22
0

This might be a very late answer but would be helpful to others with the same question.Use POS tagger,very easy to use.

http://nlp.stanford.edu/software/tagger.shtml

user3290349
  • 1,227
  • 1
  • 9
  • 17