where can I find a good wordlist
Asked Answered
T

5

8

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?

Toothed answered 23/1, 2011 at 4:27 Comment(1)
See also: https://mcmap.net/q/418199/-separate-word-lists-for-nouns-verbs-adjectives-etc word lists for nouns, verbs, adjectives, etc. Could your question be a duplicate of the one I linked?Wilma
M
7

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

Messalina answered 12/3, 2013 at 18:19 Comment(0)
C
3

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

Cloudcapped answered 23/1, 2011 at 4:39 Comment(0)
S
1

Most flavors of linux ship with a file called dictionary. It's got all English words you might want, but they are not categorized.

Synchrotron answered 23/1, 2011 at 4:32 Comment(1)
Where is this dictionary file located? I'm aware of words. The words file is usually stored at /usr/share/dict/words or /usr/dict/words.Dagny
P
0

To obtain human readable output, you need to use ASPELL twice:

aspell -d en dump master | aspell -l en expand > words

at least according to: http://www.commandlinefu.com/commands/view/10619/dump-an-aspell-dictionary-as-a-word-list

Here is an example:

aspell -d en dump master | aspell -l en expand
...
abases
abbesses
abscess
abscess's
abscissa
abuser's
abusers
abuse's
abuses
abysses
...
Pyrrhic answered 1/6, 2017 at 12:41 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.