我在哪里可以找到一个好的单词表
我正在寻找一个单词列表文件,并且也是按单词类型设置的。例如这种格式的东西
Nouns: {
bus
car
deck
elephant
...
}
Adjectives {
awful
bashful
...
}
Advervb {
...
}
有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
MOBY 单词列表几乎正是您要查找的内容:http://icon.shef.ac.uk/Moby/mpos.html
此列表也建立在 MOBY 列表的基础上:http://www.ashley-bovan.co.uk/words/partsofspeech.html
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
一个问题是词的类型取决于用法和上下文。例如,“root”可以是名词或动词。
在安装了
aspell
的 Unix/Linux 系统上,这将为您提供字典中的所有单词:最后,请参阅相关问题:需要免费的英语词典或语料库,最终用于 MySQL 数据库
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:Finally, see the related question: Need free English dictionary or Corpus, ultimately for a MySQL database
大多数版本的 Linux 都附带一个名为字典的文件。它包含您可能想要的所有英语单词,但它们没有分类。
Most flavors of linux ship with a file called dictionary. It's got all English words you might want, but they are not categorized.
要获得人类可读的输出,您需要使用 ASPELL 两次:
aspell -d en dump master | aspell -l en 展开 >单词
至少根据: http://www.commandlinefu.com/commands/view/10619/dump-an-aspell-dictionary-as-a-word-list
这是一个示例:
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:
这是一个很好的名词/动词列表...
名词
http://www.momswhothink.com/reading/list-of-nouns.html" rel="nofollow">http://www. momswhothink.com/reading/list-of-nouns.html
动词
http ://www.momswhothink.com/reading/list-of-verbs.html
副词
http://www.momswhothink.com/reading/list-of-adverbs.html
Here is a good list of nouns / verbs ...
Nouns
http://www.momswhothink.com/reading/list-of-nouns.html
Verbs
http://www.momswhothink.com/reading/list-of-verbs.html
Adverbs
http://www.momswhothink.com/reading/list-of-adverbs.html