Using pspell to determine if a word is a noun or not

615 Views Asked by At

Is it possible to use pspell to determine if a word is a noun or not? If not, is there any other easier way? Thanks.

$word = "cat";
$pspell_link = pspell_new("en"); //spell check
$boo = pspell_check($pspell_link, $word); //check the word
0

There are 0 best solutions below