Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a simple text file that contains all the words in a moderm dictionary.

I play a game called scramble, and would like to create a program that takes an input of letters and will tell me what kind of words could be made out of the combination of letters.

DNOC
DCIA
ELRJ
IIOT

Circle, Cocain, Jailed, Carol can be made out of the previous input, but words like Tan, Coat, Not can not be made since their letters are not touching. I am going to do a recursive search on the input, but need a list of words to compare it to.

share|improve this question
2  
I don't think "cocain" is a word. :-) – Ken Apr 12 '09 at 0:12
1  

6 Answers

up vote 34 down vote accepted

Look for /usr/share/dict/words on your common or garden variety Unix install.

share|improve this answer
2  
I bet you could find the file online somewhere too... – David Zaslavsky Apr 11 '09 at 23:59
thats what i am looking for. – Jose Vega Apr 11 '09 at 23:59
1  
cat /usr/share/dict/words > words.txt – Jose Vega Apr 12 '09 at 0:04

I suggest having a look here :

http://wordlist.sourceforge.net/

Its Kevin's Word List Page. This page contains links to various Word Lists and related information. Example of some of the wordlist are:

  • SCOWL (Spell Checker Oriented Word Lists)
  • Automatically Generated Inflection Database
  • The Part Of Speech Database

Here is another useful link which contains 58 000 English words. http://www.mieliestronk.com/wordlist.html

share|improve this answer

GNU has a dictionary XML file that you might be able to use. At one point, I thought GNU offered a plain-text version of an unabridged dictionary, but I can't seem to find it now.

http://www.ibiblio.org/webster/

share|improve this answer

I've forked a trie c code and wrote some changes to search for possible words on a 4x4 matrix just like that.

If you are still interested: https://github.com/andredurao/trie.c

share|improve this answer
I like it. I'll make sure to try it out. – Jose Vega Aug 23 '12 at 13:23

here is the link for two packages UKACD about 240 000 words and EOWL with about 130 000 words http://dreamsteep.com/projects/the-english-open-word-list.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.