编程语言
首页 > 编程语言> > 游戏英文单词的javascript列表

游戏英文单词的javascript列表

作者:互联网

我正在制作一个简单的JS游戏,需要一个英语词典单词列表.我需要自己构建列表,还是可以访问系统或浏览器的拼写检查字典-也许还有其他解决方案?

解决方法:

您可以使用Aspell英语词典.
Aspell英语词典的网址为:ftp://ftp.gnu.org/gnu/aspell/dict/0index.html.

要从Aspell词典结帐中转储世界列表:

> https://superuser.com/questions/137957/how-to-convert-aspell-dictionary-to-simple-list-of-words
> http://www.commandlinefu.com/commands/view/10619/dump-an-aspell-dictionary-as-a-word-list
> http://aspell.net/man-html/Dumping-the-Contents-of-the-Word-List.html

转储英语单词列表的命令应类似于:

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

标签:javascript,dictionary,spell-checking
来源: https://codeday.me/bug/20191010/1887600.html