dbTalk Databases Forums  

Does any body know where I can get a list of english words?

comp.databases comp.databases


Discuss Does any body know where I can get a list of english words? in the comp.databases forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
John MacIntyre
 
Posts: n/a

Default Does any body know where I can get a list of english words? - 02-18-2004 , 11:06 PM






Hi,

I need to populate a dictionary table with all the words in the English
language. My first idea was to load a MSWord COM object and use the
dictionary, but I would prefer to have my own list.

Does anybody know where I can find data like this? Even if I have to ..
gulp .. pay for it.

Thanks in advance.
--
John MacIntyre
VC++ / VB / ASP / Database Developer
http://www.johnmacintyre.ca




Reply With Quote
  #2  
Old   
Jim Kennedy
 
Posts: n/a

Default Re: Does any body know where I can get a list of english words? - 02-18-2004 , 11:28 PM







"John MacIntyre" <Please (AT) reply (DOT) to.group.thx> wrote

Quote:
Hi,

I need to populate a dictionary table with all the words in the English
language. My first idea was to load a MSWord COM object and use the
dictionary, but I would prefer to have my own list.

Does anybody know where I can find data like this? Even if I have to ..
gulp .. pay for it.

Thanks in advance.
--
John MacIntyre
VC++ / VB / ASP / Database Developer
http://www.johnmacintyre.ca



You might try the OED. http://dictionary.oed.com/
That would be a much more complete list than the MS stuff. I would contact
them.
Jim




Reply With Quote
  #3  
Old   
Jim Kennedy
 
Posts: n/a

Default Re: Does any body know where I can get a list of english words? - 02-18-2004 , 11:30 PM




"John MacIntyre" <Please (AT) reply (DOT) to.group.thx> wrote

Quote:
Hi,

I need to populate a dictionary table with all the words in the English
language. My first idea was to load a MSWord COM object and use the
dictionary, but I would prefer to have my own list.

Does anybody know where I can find data like this? Even if I have to ..
gulp .. pay for it.

Thanks in advance.
--
John MacIntyre
VC++ / VB / ASP / Database Developer
http://www.johnmacintyre.ca



Or find a hacker that has a dictionary for a dictionary attack or is that
what you are trying to do?
Jim




Reply With Quote
  #4  
Old   
John MacIntyre
 
Posts: n/a

Default Re: Does any body know where I can get a list of english words? - 02-19-2004 , 12:00 AM



"Jim Kennedy" <kennedy-downwithspammersfamily (AT) attbi (DOT) net> wrote

Quote:
Or find a hacker that has a dictionary for a dictionary attack or is that
what you are trying to do?
Jim

Hi Jim,

That is ABSOLUTELY NOT what I am trying to do. .. no offense taken though.

I'm actually trying to filter out garbage in a parsing app that I am
building.

I appreciate the previous posting, but the hacker idea is not .. I don't
think anyway .. complete enough.

Thanks again,
John MacIntyre
VC++ / VB / ASP / Database Developer
http://www.johnmacintyre.ca





Reply With Quote
  #5  
Old   
Lyle Fairfield
 
Posts: n/a

Default Re: Does any body know where I can get a list of english words? - 02-19-2004 , 01:36 AM



"John MacIntyre" <Please (AT) reply (DOT) to.group.thx> wrote in
news:qjYYb.7255$Cd6.636337 (AT) news20 (DOT) bellglobal.com:

Quote:
"Jim Kennedy" <kennedy-downwithspammersfamily (AT) attbi (DOT) net> wrote in
message news:ORXYb.72870$jk2.415614 (AT) attbi_s53 (DOT) ..

Or find a hacker that has a dictionary for a dictionary attack or is
that what you are trying to do?
Jim


Hi Jim,

That is ABSOLUTELY NOT what I am trying to do. .. no offense taken
though.

I'm actually trying to filter out garbage in a parsing app that I am
building.

I appreciate the previous posting, but the hacker idea is not .. I don't
think anyway .. complete enough.

Thanks again,
John MacIntyre
VC++ / VB / ASP / Database Developer
http://www.johnmacintyre.ca
If you created a Word Application Object you could check eash parsed word
with

WordApplicationObject.CheckSpelling(ParsedWord).

??????????

--
Lyle
(for e-mail refer to http://ffdba.com/contacts.htm)


Reply With Quote
  #6  
Old   
osmium
 
Posts: n/a

Default Re: Does any body know where I can get a list of english words? - 02-19-2004 , 03:41 AM



John MacIntyre writes:

Quote:
I need to populate a dictionary table with all the words in the English
language. My first idea was to load a MSWord COM object and use the
dictionary, but I would prefer to have my own list.

Does anybody know where I can find data like this? Even if I have to ..
gulp .. pay for it.
There are a lot of freely available lists on the Internet, some of them
aimed at special audiences , such as five-letter words. There are two ways
to find such lists. One way is to use "word list" as a google search
target. The other (and more fun) is to use two or so words that will only
occur together in a dictionary. Such as <ambidextrous avocado>, it's fun
making these things up and see how many hits you can make.




Reply With Quote
  #7  
Old   
os moma
 
Posts: n/a

Default Re: Does any body know where I can get a list of english words? - 02-19-2004 , 04:21 AM



John MacIntyre wrote:
Quote:
Hi,

I need to populate a dictionary table with all the words in the English
language. My first idea was to load a MSWord COM object and use the
dictionary, but I would prefer to have my own list.

Does anybody know where I can find data like this? Even if I have to ..
gulp .. pay for it.

Thanks in advance.
--
John MacIntyre
VC++ / VB / ASP / Database Developer
http://www.johnmacintyre.ca



Hello John,

In Linux you can easily spell-check a file with 'aspell'.

$ aspell -c text.txt

http://freshmeat.net/projects/aspell/
Maybe there is a windows version available.

os moma
http://www.futuredesktop.org/#distrolist



Reply With Quote
  #8  
Old   
phobos
 
Posts: n/a

Default Re: Does any body know where I can get a list of english words? - 02-19-2004 , 08:49 AM



"John MacIntyre" <Please (AT) reply (DOT) to.group.thx> wrote

Quote:
"Jim Kennedy" <kennedy-downwithspammersfamily (AT) attbi (DOT) net> wrote in message
news:ORXYb.72870$jk2.415614 (AT) attbi_s53 (DOT) ..

Or find a hacker that has a dictionary for a dictionary attack or is that
what you are trying to do?
Jim


Hi Jim,

That is ABSOLUTELY NOT what I am trying to do. .. no offense taken though.
But would it not be most perfectly ironic to have your systems
accessed by a cracker who used Access? :-)


Reply With Quote
  #9  
Old   
--CELKO--
 
Posts: n/a

Default Re: Does any body know where I can get a list of english words? - 02-19-2004 , 01:55 PM



Moby Lexicons:

Available in the public domain: Moby Words, Moby Hyphenator,
Moby Part-of-Speech, Moby Pronunciator, Moby Thesaurus, and Moby Language.
FTP: ftp://ftp.let.ruu.nl/pub/colibri/nlp...l/moby.23-1996
E-mail: mail-server (AT) let (DOT) ruu.nl " send colibri/nlp/general/moby.23-1996 "
FTP: ftp://svr-ftp.eng.cam.ac.uk/pub/comp...ionaries/moby/
WWW: http://www.dcs.shef.ac.uk/research/ilash/Moby/
FTP: ftp://ai.uga.edu/pub/natural.language/moby

The Austin Code Works, 11100 Leafwood Lane, Austin, Texas 78750-3587, U.S.A.
Telephone: 512-258 0785.
Facsimile: 512-258 1342.
E-mail: info (AT) acw (DOT) com
WWW: http://www.acw.com/

Source: Gary Frank, garyfrank (AT) itol (DOT) com, via Usenet:comp.ai.nat-lang,
06 Jul 1996.

Reply With Quote
  #10  
Old   
Tony Toews
 
Posts: n/a

Default Re: Does any body know where I can get a list of english words? - 02-19-2004 , 09:14 PM



phobos2 (AT) hotmail (DOT) com (phobos) wrote:

Quote:
That is ABSOLUTELY NOT what I am trying to do. .. no offense taken though.

But would it not be most perfectly ironic to have your systems
accessed by a cracker who used Access? :-)
<chuckle>

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.