Dictionary text file

Dictionary

Dictionary Problem Overview


I am writing a program that needs A LOT of words of the English language. I am trying to find a dictionary file that has a lot of words. Does anyone know of a good source? I tried many sources but they don't seem to have it.

Dictionary Solutions


Solution 1 - Dictionary

What about /usr/share/dict/words on any Unix system? How many words are we talking about? Like OED-Unabridged?

Solution 2 - Dictionary

For an English dictionary .txt file, you can use Custom Dictionary.

You can also generate a list aspell or wordlist with own settings.

Also you can take a look at http://wordlist.sourceforge.net/

Only english words: http://www.math.sjsu.edu/~foster/dictionary.txt

Solution 3 - Dictionary

Also take a look at:

Solution 4 - Dictionary

http://www.math.sjsu.edu/~foster/dictionary.txt

350,000 words

Very late, but might be useful for others.

Solution 5 - Dictionary

There's also WordNet. Its data files format are well-documented.
I used it for building an embeddable dictionary library for iOS developers (www.lexicontext.com) and also in one of my apps.

Solution 6 - Dictionary

@Future-searchers: you can use aspell to do the dictionary checks, it has bindings in ruby and python. It would make your job much simpler.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSuperStringView Question on Stackoverflow
Solution 1 - DictionaryRobertView Answer on Stackoverflow
Solution 2 - DictionarySujith PSView Answer on Stackoverflow
Solution 3 - DictionarymikuView Answer on Stackoverflow
Solution 4 - DictionaryRajendra UppalView Answer on Stackoverflow
Solution 5 - DictionaryOriView Answer on Stackoverflow
Solution 6 - DictionaryKhaja MinhajuddinView Answer on Stackoverflow