将自定义词添加到 R 中的 hunspell 词典的问题

Problem with adding custom words to hunspell dictionary in R

我能够弄清楚如何将自定义单词添加到 R 中的 hunspell 词典中。但是,我不确定为什么它没有被用于拼写检查。这是我使用的:

library(hunspell)
#adding custom words into hunspell dictionary
hunspell::dictionary(lang = "en_US", affix = NULL, add_words = "bing", cache = TRUE)

hunspell("bing")仍然确定"bing"不正确。

有人以前有过这方面的经验吗?谢谢

dictionary()功能returns您可以使用的新词典。它不会改变默认行为或任何东西。你可以做到

library(hunspell)
mydict <- dictionary(lang = "en_US", affix = NULL, add_words = "bing", cache = TRUE)
hunspell("bing", dict=mydict)