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
3
votes
2 answers

Javascript rich text editor with client side spell checking

I am currently investigating implementing a rich text editor with spell-checking capabilities (hopefully out-of-the-box). I have looked at quite a few other questions regarding spell checking and most of them requires a server-based (ajax) solution…
F21
  • 32,163
  • 26
  • 99
  • 170
3
votes
1 answer

Using Hunspell with Silverlight

Does anybody have any ideas of a good way to implement Hunspell in Silverlight? I see some 3rd party TextBox controls available for purchase, however I'm just looking to utilize Hunspell in the backend.
b9190db9
  • 153
  • 2
  • 7
3
votes
0 answers

hunspell tag with missing characters and not ordered correctly

As per the official documentation the TRY parameter can look something like this... TRY esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ' In this example - j, q and x capital and small letters (jqx JQX) are missing. Is there any specific reason that…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
3
votes
2 answers

Write to file cut off

My goal is to take a file of sentences, apply some basic filtering, and output the remaining sentences to a file and the terminal. I'm using the Hunspell library. Here's how I get sentences from the file: public static string[]…
Isaac G.
  • 93
  • 1
  • 6
3
votes
0 answers

Hunspell Part-Of-Speech tagger?

Is there a way to use Hunspell as a Part-Of-Speech tagger? It's for use with C++, if Hunspell can't we'll use LanguageTool, but it involve a JVM.
VNourdin
  • 99
  • 10
3
votes
2 answers

pip install hunspell: Cannot open include file: 'hunspell.h': No such file or directory

I'm trying to pip install hunspell on my windows 10 x64 machine, but I get the following error: C:\Users\a>pip install hunspell Collecting hunspell Using cached hunspell-0.3.3.tar.gz Installing collected packages: hunspell Running setup.py…
AXO
  • 8,198
  • 6
  • 62
  • 63
3
votes
2 answers

Hunspell, unmunch - dump whole dictionary, encoding error

I'd like dump hunspell's pl_PL dictionary. I found the solution: unmunch /usr/share/hunspell/pl_PL.dic /usr/share/hunspell/pl_PL.aff But there's problem with encoding. Part of the…
Mateusz Jagiełło
  • 6,854
  • 12
  • 40
  • 46
3
votes
1 answer

Hunspell affix condition regex format. Any way to match the start?

Good day. I'm trying to use Hunspell as a stemmer in my application. I don't quite like porter and snowball stemming because of their "chopped" words results like "abus", "exampl". Lemmatizing seems like a good alternative, but I don't know any good…
SimpleV
  • 396
  • 4
  • 14
3
votes
2 answers

hunspell spell check

I had a specific question regrading ordering the suggested words returned by hunspell on a typo. The words seems to be returned in an alpha order. I want to order the suggestions by relevance, that is the closest match should show up first. I…
HeretoLearn
  • 7,124
  • 6
  • 24
  • 22
3
votes
1 answer

How to pass utf8 strings properly from python to hunspell via subprocess.Popen?

I need to check the spelling of Russian words from a Python script. I am piping those words to hunspell via shell. My hunspell dictionaries are all UTF8. I have no problems using them from the command line. But something funky is happening when I…
Tench
  • 485
  • 3
  • 18
3
votes
2 answers

How to check spelling in Hunspell with case insensitive

Hi I am making a desktop application (C#) that checks the spelling of the inputted word. I am using Hunspell which I added to my project using NuGet. I have 2 files the aff file and the dic file. using (Hunspell english = new Hunspell("en_US.aff",…
MMakati
  • 693
  • 1
  • 15
  • 33
3
votes
1 answer

Hunspell c++ and russian language

i'v got some problems using hunspell spell checker with russian dictionaries. The problem is that my project works well with english, but if i'm going to connect russian language and trying to check spelling of my words it is always returns 0 (mean…
Daniil
  • 31
  • 2
3
votes
0 answers

how import ispell dictionary into hunspell?

I downloaded the dictionary : american-huge for ispell, and I'm trying to extract the words list from it. I tough of importing it into aspell and use aspell to dump it, but I want't able to :( I read that hunspell I could use hunspell in my…
Sebastien Dionne
  • 757
  • 2
  • 19
  • 34
2
votes
2 answers

C++ - Using Hunspell with MFC

After I managed to get Hunspell working with a Win32 console application, I want to use Hunspell in an MFC application in the same solution. I get the following error when I try to compile the MFC…
red_rain
  • 398
  • 4
  • 15
2
votes
1 answer

C++ - Using HunSpell 1.3.2 with Visual Studio 2010

My goal is to create a simple Win32 Console application that uses HunSpell to spell-check a word the user has entered. I tried to follow this codeproject tutorial which is for Visual Studio 2008 and HunSpell 1.2.1. I don’t want to use the provided…
red_rain
  • 398
  • 4
  • 15