Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where can I find a good wordlist

I'm looking for a file that is a wordlist and also is set up by type of word. For example something in this format

Nouns: {
    bus
    car
    deck
    elephant
    ...
}
Adjectives {
    awful
    bashful
    ...
}
Advervb {
    ...
}

Any ideas?

like image 636
qwertymk Avatar asked Jan 23 '11 04:01

qwertymk


2 Answers

The MOBY word list is almost exactly what you're looking for: http://icon.shef.ac.uk/Moby/mpos.html

This list also builds on the MOBY list: http://www.ashley-bovan.co.uk/words/partsofspeech.html

like image 183
astine Avatar answered Oct 17 '22 07:10

astine


One problem is that the word type depends on usage and context. For example, 'root' can be a noun or verb.

On a Unix/Linux system with aspell installed, this will give you all the words in the dictionary:

aspell dump master

Finally, see the related question: Need free English dictionary or Corpus, ultimately for a MySQL database

like image 41
payne Avatar answered Oct 17 '22 06:10

payne