
pspell_config_ignore 옵션은 spell checking에서 무시할 단어를 지정하는 옵션입니다. 이 옵션을 사용하려면, pspell_config_ignore 함수를 호출하여 무시할 단어 목록을 전달하면 됩니다. 예를 들어, 다음과 같이 사용할 수 있습니다.
#hostingforum.kr
c
#include
// 무시할 단어 목록
char *ignore_words[] = {"이", "은", "는", "은", "는"};
// pspell_config_ignore 옵션 설정
pspell_config *config = pspell_config_create(NULL);
pspell_config_ignore(config, ignore_words);
// spell checking 수행
pspell *spell = pspell_new(config);
이러한 방법으로 pspell_config_ignore 옵션을 사용하여 spell checking에서 무시할 단어를 지정할 수 있습니다.
2025-03-30 11:00