Tagged Questions

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

learn more… | top users | synonyms

8
votes
2answers
346 views

Max edit distance and suggestion based on word frequency

I need a spell checker with the following specification: Very scalable. To be able to set a maximum edit distance for the suggested words. To get suggestion based on provided words frequencies ...
4
votes
3answers
277 views

Is it okay to include GPL'ed file (like dictionaries) in a proprietary application?

I've implemented hunspell in my application and noticed that some of the dictionaries from the OpenOffice site are under GPL license. Is it legal to distribute these dictionaries files along with my ...
4
votes
2answers
2k views

Emacs Windows spellcheck - aspell or hunspell

I use emacs 23.1.50 version on Windows XP operation system. I could not setup hunspell or aspell as part of emacs with the example provided by the emacs wiki. Anyone has working confiugration for ...
3
votes
3answers
321 views

How do I resolve a Hunspell Intel 32bit DLL not found exception?

I have used the following code for spelling checking. While I am running it, I get an DLLFileNotFound exception: "Hunspell Intel 32Bit DLL not found: C:\project\splee\Hunspellx86.dll". Code ...
3
votes
1answer
333 views

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 ...
2
votes
1answer
35 views

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 ...
2
votes
0answers
83 views

lucene & hunspell - java

I am trying to implement hunspell into lucene. The task is to make an application which finds words in pdf documents. I know what I have to do generaly but not specific. I know that I have to make a ...
2
votes
1answer
79 views

NHunspell with Microsoft Word?

Does anyone know if there is a way to integrate NHunspell with Microsoft Word? I've been trying to find a way to use opensource spelling dictionaries with Microsoft Word to enable support for ...
2
votes
2answers
170 views

Emacs on Win32 with hunspell - personal dictionary does not get saved

So I have a working setup for Emacs (v23.3.1) on Windows 7 using hunspell after following the instructions in the wiki. http://www.emacswiki.org/emacs/InteractiveSpell When I spell check a document ...
2
votes
2answers
200 views

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 ...
2
votes
1answer
147 views

Is Hunspell thread safe?

Is the Hunspell spelling library thread-safe?
2
votes
2answers
1k views

Working setup for hunspell in Emacs

Does anyone have a working setup for hunspell and Emacs? Simply setting ispell-program-name to hunspell doesn't work, the output (when using flyspell, for example) looks like below: -> UTF-8 ...
1
vote
0answers
17 views

Nhunspell C# Adding Word to Dictionary

I have managed to incorporate spell checking into my C# project using NHunspell. What I would like to do is actually add a word to the dictionary file. There is a method to do this inside of NHunspell ...
1
vote
1answer
25 views

Bash - omit lines starting with a mis-spelled word (using hunspell)

I have a file words.txt in which each line is a word, followed by a TAB, followed by an integer (which represents the word's frequency). I want to generate a new file containing only those lines where ...
1
vote
0answers
27 views

Hunspell - Can't open affix or dictionary files for dictionary named en_US

I'd like to use hunspell to spell check my repo. However when I try to run it I get the following error: Can't open affix or dictionary files for dictionary named "en_US". How can I fix this? I'm ...
1
vote
2answers
115 views

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 ...
1
vote
0answers
82 views

Combine two BDIC files from Chrome (hunspell) into one

I have two BDIC (binary dictionary?) files from Google Chrome spell checker (based on hunspell). I want to combine this two files into one single BDIC for all words. Here is a reader/writer of this ...
1
vote
1answer
141 views

How to do spell check on html and xml?

I have to do spell check for large number of big html and xml documents (more than 30.000). I also need custom dictionary and sophisticated algorithms of checking. I try to use BASH + linux utility ...
1
vote
1answer
467 views

Problem with statically linking hunspell library in visual studio 2010

I can't statically link hunspell library to my C++ project in Visual Studio 2010. I downloaded hunspell and went to hunspell-1.3.1\src\win_api folder. I opened libhunspell.vcproj file in visual ...
1
vote
1answer
420 views

Compile hunspell with Visual Studio

I need a spellcheck tool for my MS C++ (MFC) project. It looks like hunspell is a good choice. However, I found it difficult to compile with visual studio. Can someone help? Here is what I have done: ...
0
votes
0answers
15 views

Pipe arguments to hunspell with xargs

I'm trying to run hunspell over my source tree. However when I run this: find . -name *.html | xargs hunspell -H The Hunspell editor comes up on the screen, but it won't accept any typed input - ...
0
votes
1answer
80 views

Lucene StandardAnalyzer using Hunspell TokenFilter in C#?

How can I add a TokenFilter to StandardAnalyzer in Lucene? Or is there another Analyzer that does the same thing, only allows me to also use a TokenFilter? I have a TokenFilter for Hunspell in C# ...
0
votes
1answer
103 views

Hunspell: Any solid example?

I have downloaded and compiled hunspell fine. Now I want to make a test app on wxWidgets and I started looking for example or tutorial. So far I have found none. I can find "example" executable but no ...
0
votes
0answers
57 views

Dictionary File Structure of Open Spell-Checkers

Is there any explanation docs or tutorials of the file structure of FreeDict, Aspell, Hunspell/OpenOffice Dictionaries especially concerning the switches at the end of each row in each .dic file? My ...
0
votes
2answers
141 views

Using awk for conditional find/replace

I want to solve a common but very specific problem: due to OCR errors, a lot of subtitle files contain the character "I" (upper case i) instead of "l" (lower case L). My plan of attack is: Process ...
0
votes
1answer
140 views

How to make custom dictionary for Hunspell

I have a question about building a custom dictionary for hunspell. I'm using a general English dictionary and affix file right now, and I want to add user specified words to that dictionary for each ...
0
votes
3answers
126 views

Using Hunspell With Heroku

I'm building a Rails app that uses Hunspell and the hunspell-ffi gem so that Ruby can interface with it. I'm deploying the app to heroku, but unfortunately it needs Hunspell to be installed on the ...
0
votes
0answers
92 views

How I can exclude checking of Java packages in hunspell

I have a very large html file with the names of different packages that I should check with Hunspell. There are more than 1000 packages, but all of them start with com.sun, so I would like to add ...
0
votes
1answer
226 views

Hunspell on Android

Does anyone successfully implemented Hunspell spell-checker on Android platform? Is it even possible? Did you try it? What about the results? Thank you in advance.