Questions tagged [hunspell]

An open source spell checker, used by OpenOffice, Firefox, Google Chrome and Mac OS X.

Hunspell is a spell checker and morphological analyzer designed for languages with rich morphology and complex word compounding and character encoding, originally designed for the Hungarian language.

http://en.wikipedia.org/wiki/Hunspell

238 questions
0
votes
1 answer

what is the method to add vocabulary in hunspell pakckage

I have a list of word that I want to correct using unspell but in these words, there could be some specific word that hunspell didn't know and that he has to not correct(the list is not defined and too long to be added by hand) what method do I…
Jérémy
  • 340
  • 1
  • 3
  • 13
0
votes
1 answer

How to load hunspell dictionary in Windows path with non-ASCII characters?

How to load hunspell dictionary in Windows path with non-ASCII characters? Hunspell manual suggests: In WIN32 environment, use UTF-8 encoded paths started with the long path prefix \?\ to handle system-independent character…
Vadim Peretokin
  • 2,221
  • 3
  • 29
  • 40
0
votes
0 answers

Is there a way to make Hunspell accept real quotes (‘’ “”) instead of ignoring them in the user dictionary?

I use real quotes instead of straight quotes in my writing in everything. Straight quotes are reserved for programs to indicate literal strings. Since using real quotation marks for indicating titles and quotes, this makes sense to keep this usage…
0
votes
1 answer

Inverse selection in hunspell

Is there any tag in hunspell to declare the current word as wrong but all it's tags to be valid? In the following example, how do I declare the original word "party" as a wrong word while it's plural form "parties" to be correct? party/S SFX S Y…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
0
votes
2 answers

How do I switch from UTF-8 char * to a dynamic encoding with Win32 API?

I'm currently working on a project that uses Hunspell inside Node. The goal is a cross-platform spell-checking that works with encoding properly (node-spellchecker). I have to use arbitrary dictionaries which have different encodings. Most have SET…
dmoonfire
  • 231
  • 3
  • 8
0
votes
0 answers

stemmed word using hunspell module

I am using 2 modules for NLP one is nltk and the other is hunspell. The reason of using hunspell is that I have suffix and affix rules those needs to be followed. from nltk.stem.porter import * stemmer =…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
0
votes
1 answer

Compiling Hunspell as static library in C++ Builder

I am attempting to use Hunspell DLL in C++ Builder but have nothing but troubles. So I try to resort to compiling as static library. But even that doesn't go smooth. The steps I did so far: downloaded the latest Hunspell from…
Coder12345
  • 3,431
  • 3
  • 33
  • 73
0
votes
1 answer

How can I return a value that is only seen in a function which is passed into another function?

In the code below, I am trying to get a value from a 'nodehun' method called spellSuggestions. In the documentation I'm told the syntax to use this method is as follows: dict.spellSuggestions(w, handleMisspellings); where w is a list of words and…
Evan Woods
  • 31
  • 1
  • 2
0
votes
2 answers

Unable to load Hunspell package

I have installed hunspell 1.6 in python 3.5 environment using conda. When I try to import, it gives a import error. ImportError: No module named 'hunspell' Here is the screenshot attached. Hunspell Error
Anee
  • 35
  • 1
  • 8
0
votes
1 answer

"how to" questions to Command Line Interface of hunspell

mighty All, may my question are stupid, don't hesitate to estimate how foolish I am, but, tell me please the answers on couple of questions: intro: I've installed hunspel into c:\hunspell dir on Windows7. hunspell.exe is in c:\hunspell\bin (added…
0
votes
1 answer

Case Insensitive spell checker in R

I am currently using hunspell_check() function in hunspell package in R to classify words as correct or incorrect. But the dictionary it uses is case sensitive. Is there a way to specify case insensitivity if I have to continue using the same…
Harshad Patil
  • 313
  • 1
  • 3
  • 13
0
votes
0 answers

Deploy Rshiny App :Error Building Hunspell(2.7)

The code works properly in the RStudio IDE but when deploying the RShiny app it generates this error Error: Unhandled Exception: Child Task 499025532 failed: Error building image: Error building hunspell (2.7). Build exited with non-zero status:…
0
votes
1 answer

Using Hunspell with Unity (.net 2.0)

Hi is there somewhere solution for Hunspell for Unity(.net 2.0). I'm working on android platform. I tried to implement WeCantSpell.HuntSpell But i get problem with encoding : "Encoding name 'ISO8859-1' not supported" I researched a bit, and i saw…
Ognjen Marceta
  • 151
  • 1
  • 7
0
votes
0 answers

problems with adding library to my project

I have created a project with intention of using hunspell functions in it. I am working in Ubuntu. I installed and compiled hunspell library and linked it with g++ -o wc.exe -lhunspell-1.6 wordcheck.cxx and everything seemed ok. But when I tried to…
Alex
  • 1
  • 1
0
votes
1 answer

Hunspell (Python 3) how to handle umlauts

I use CyHunspell and Python 3.6 (IDLE) on OS X to check if words are spelled correctly. It works for most words but not if it has german Umlauts like ä. So I guess encoding might be a problem. I already tried a few dictionaries as the LibreOffice…
Big_Berny
  • 3
  • 3