Flagging words in a document that may not be spelled correctly.

learn more… | top users | synonyms (3)

0
votes
0answers
27 views

Deploying spell checking solution on Google App Engine

I have been searching on this problem for a long time with no satisfiable solution. I am developing a web app in python using GAE. I need a spell checking service to make sure the user inputs are ...
0
votes
1answer
29 views

Emacs cannot find flyspell/ispell

On my Mac (Snow Leopard, 10.6.8), I'm using a modified version of Emacs 24.2 provided here to utilize Emacs Speaks Statistics (ESS) from the downloads page. Emacs works, but I haven't yet been able to ...
0
votes
0answers
22 views

how to check if the user has corrected a misspelled word?

By using the html attribute spellcheck as following: <input type="text" name="a_word" spellcheck="true"> The misspelled word would be redlined if the browser support this feature. The user, ...
1
vote
1answer
87 views

Spelling Suggestions showing 'None' haystack

Getting "None" for spelling suggestions. settings.py contains 'INCLUDE_SPELLING': True search_indexes.py class JobIndex(indexes.SearchIndex, indexes.Indexable): text = ...
0
votes
0answers
8 views

Getting started with hunspell

I am planning to build a spell-check engine in morphological rich language. I studied about Hunspell and pretty convinced. I have a small dictionary of root word and affix file. I am planning to write ...
0
votes
0answers
34 views

Spell Check Feature in C# Windows Form Application [duplicate]

I'm working on creating a windows form application with C# and I was wondering how I could implement a type of spell check feature. To be specific I have several TextBoxes. The user will enter the ...
1
vote
0answers
26 views

Autocomplate Spellcheck and Highlight in solr faceted search

i am using solr faceted search with direct access to its search form. but now i am having problem is doing highlighting auto completing and spell checking in templete using jquery. here is my code in ...
0
votes
1answer
50 views

improving the speed and efficiency of this PHP spellchecker

I built a simple PHP spellchecker and suggestions app that uses PHP's similar_text() and levenshtein() functions to compare words from a dictionary that is loaded into an array. How it works is ...
-1
votes
0answers
14 views

af:RichTextEditor challenges [closed]

In Adf RichTextEditor component clientListner is not working ,thusi cannot invoke javascript. I need to display dynamically no.of characters user is typing . I also need to implement spell check same ...
0
votes
1answer
36 views

How to do spell checking in ZK textbox or textarea

I am using Zk6.5.2 in my web application ,any one know if ZK provide any spell checking tool for textbox or textarea or we can integrate any third party tool . Thanks
1
vote
2answers
50 views

Python - Check spelling of city names with Google Maps API

I have about 100,000 unique city names and many of them have spelling mistakes (bad scanning, bad ocr, many european names with special characters, etc...). Can I write a loop in python to check ...
0
votes
1answer
21 views

Solr get collation document

Can somebody of you tell me how to get the complete document from the collations suggestes from spellchecker. I cant find anything on google. Must i query again with the collations the spellchecker ...
0
votes
0answers
10 views

Texlipse spellchecker: How to get all spelling mistakes on a single view?

I am using TeXlipse spell checking (eclipse 3.7, Texlipse 1.5.0), so I can see the spelling mistakes in my LaTeX code. Such errors are underlined in red. I configured it as in this question. However, ...
0
votes
0answers
22 views

Swing interface for SpellChecker

I am using the Lucene 3.6 library to build a spell checker engine. In addition , the Highlight() class is used to highlight a misspelled text. Now will like to integrate this into a jTextField. Want ...
0
votes
0answers
7 views

How to install PyEnchant on Heroku?

It seems that PyEnchant requires the C enchant library. How would I go about installing this on Heroku, is that possible? According to this question, I would need to write my own build pack for ...
0
votes
0answers
8 views

Mac OS WebView Underline Spelling Errors

I have a simple problem with that is proving to be terribly difficult to find an answer for. I am using a WebView to load a webpage with text areas. When typing in these text areas spelling mistakes ...
0
votes
0answers
12 views

Solr spellcheck and pointing to a particular dictionary

I'm using solr-4.2.1 for my project. It basically stores the file's content as well as some metadata specific to a project. For that I want the spellcheck and suggester should be specific to the ...
-2
votes
0answers
14 views

Advanced Spell checker? [closed]

I need a spell checker that is able to correct spellings for queries like Samsunggalaxyace to Samsung galaxy ace.. or maybe samsongaaluxyacce to Samsung galaxy ace without having the whole term ...
-1
votes
1answer
23 views

return string most like another string in PHP

I'm trying to build a spell checking system in PHP. I already have a lexicon / corpus of many of the words in the English language. Each word on a new line. What I'm trying to do is once given a ...
-1
votes
0answers
54 views

VBA Excel - Get suggestions for misspelled

I have a huge amount of words in txt file. Many of these words are misspelled and I want to check them by Microsoft checker via Excel macro. So I need to save all suggestions to another file or sheet. ...
4
votes
1answer
66 views

newSpellCheckerSession always returns null

I'm trying to hook into the built in Android spell checking service on my Note tablet. When I call final TextServicesManager tsm = (TextServicesManager) getSystemService( ...
0
votes
3answers
34 views

To Get the start and end positions of String text in java jTextArea

I am implementing a spellchecker using apached lucene 3.6 Want to integrate the highlighting of mispelled words with the Highlight class using the "start" and "end" position of the words. Will ...
0
votes
2answers
27 views

Spell check and suggest proper word in PHP

I was wondering if anyone knows of any library, script, or service that can spell check a string and return a suggestion of the properly spelled word or suggestions if more that one properly spelled ...
1
vote
1answer
31 views

Spanish spelling checker for MacVim?

How do I add the Spanish spell-checker for MacVim? I read that this is a useful link, but apparently it is not working ... what should I do?
0
votes
0answers
15 views

Query about BK Trees

I am implementing BK trees for spell checking in C++. The thing is, the results are not accurate at all. Even if I write a correct word, it doesn't return that word, rather it returns some other ...
0
votes
0answers
44 views

spell check with haystack

I am getting None in spell check first i made changes in settings.py HAYSTACK_CONNECTIONS = { 'default': { 'ENGINE': 'haystack.backends.solr_backend.SolrEngine', 'URL': ...
0
votes
1answer
31 views

french spell checker api

I'm working with extjs and Java EE and I have an extjs html xtype and I want to integrate a French spell checker API. But I haven't any idea about APIs and how to integrate them. Can any one give me ...
1
vote
1answer
80 views

C# Lucene.Net spellchecker

I have a site that give data to the user. I want to use Lucene.Net for my autocomplete. The thing is I want to be able to return results that correct spelling errors. I see that Lucene.Net has a ...
0
votes
0answers
40 views

Are all C/C++ Hunspell APIs thread-unsafe?

Are all C/C++ APIs for example spell(), suggest(); analyse() in the Hunspell library thread-unsafe? When I use the suggest() API with a lock, I see on an average 50-100 requests for suggestion ...
0
votes
1answer
72 views

Adding a word into a custom Dictionary from a SpellCheckerService

I am implementing an IME with a customized dictionary and Id like to create a SpellCheckerService as well. The integration is trivial however I cannot seem to find any documentation on how to add non ...
1
vote
1answer
27 views

Disable misspelling flag of specific words in app?

Our company's name always comes up as misspelled (the red underline) when typed into EditText fields in our app. Is there a way I can disable the misspelling flag for a specific word to avoid this ...
0
votes
1answer
22 views

Telerik error: Could not load type 'Telerik.WebControls.Dialogs.SpellCheckControl'

I am getting following error while trying to build my ASP.NET websie. Error 1 Could not load type 'Telerik.WebControls.Dialogs.SpellCheckControl'. ...
0
votes
1answer
37 views

Flyspell: is it possible to ignore words based on pattern?

I would really like to disable flyspell checking of camel-cased words - most of the times they aren't valid English. Is there any way to do that?
0
votes
0answers
19 views

Use Spellcheck for Release Notes

Is there any way to get spell check to work for a Release Notes work item in TFS? The release notes that become public are being generated from these work items, but there is no easy way to spell ...
0
votes
0answers
34 views

Custom spelling dictionary for html5 [closed]

Is there a way to replace or supplement the browser's spelling dictionary for a web app? For instance, if I wanted my app to be able to use medical terminology, could I provide some sort of supplement ...
0
votes
1answer
42 views

UITextView Auto-Correction is causing DidEndEditing callback

I have a TextView element in my custom cell with auto spell correction on. When I enter next word after spell correction on wrong text followed by a space and then clear it by pressing backspace, The ...
0
votes
1answer
40 views

Why does range.location == NSNotFound mean that a word is found and not the opposite?

In this question (iPhone objective-c: detecting a 'real' word) the function returns the following line as true if the word is a 'real word' return misspelledRange.location == NSNotFound; ...
0
votes
0answers
80 views

Jaccard index missing possible matches for edit distance

Developing an OCR correction module, I'm experimeting in Python. The idea is to try to correct each word in OCR based on dictionary(vocab) using bigrams,Jaccard index and edit distance. Sample vocab: ...
1
vote
1answer
50 views

Adding a wordlist to vim spell

I have a really long list of (chemistry) words that I want to add to the vim spell checking file. To do this it looks like the best way is to get the english dictionary (I used the .oxt from ...
2
votes
1answer
146 views

What is good for spell checker? Google spell checker or Hunspell

For my asp.net website, I need spell check functionality. I found some interesting solutions to do it. 1. Google spell checker 2. Hunspell. Both are free. For my understanding I realized some cons ...
1
vote
1answer
54 views

Program says dictionary doesn't exist when it does

I'm writing a spell checker using my library libspellcheck. I have a function to add a word to the dictionary. However, it keeps throwing an exception saying that the dictionary doesn't exist, when it ...
-2
votes
4answers
268 views

Spell check and word suggestion script in SQL Server

I'm developing a web application using ASP.NET and SQL Server 2008. I have about 1,000,000 articles in my DB and I've activated Full-Text-Search. Now, I want to search in articles and I need 3 ...
0
votes
2answers
39 views

How to utilize Word Spell Checker via VSTO?

Currently I am running a research project to process English text. The text data is quite noisy and contains many spelling and grammatical errors. I know MS Word can automatically highlight these ...
0
votes
0answers
44 views

Spell check and correction in Neo4J

i am having a Neo4J database where a huge amount of data related to airlines and airports is stored. And this data can be accessed through a python/django based webapp from which a user can check for ...
0
votes
0answers
72 views

using nsIEditor to spellcheck the entire document

say I have a content document with this sort of structure: <div contenteditable=true> <p>som baddly spelt text</p> <p>mor baddly spelt tekst</p> </div> ...
2
votes
1answer
210 views

Tinymce: Spellchecker is not working

I am using spellchecker for tinymce in my application. The spellchecker internally using Moxiecode.TinyMCE.dll. It was working fine before our last live update. Suddenly it's giving error saying You ...
1
vote
1answer
437 views

How to enable spell checker in web browser control for IE10

I am trying to enable the spell checker feature coming with IE10 in my own application hosting web browser control. According to this page ...
0
votes
2answers
276 views

Google Spellcheck

I'm unable to access the Google spell check service located at this address: https://www.google.com/tbproxy/spell is anyone else having this problem? I keep getting "bad gateway" when I try to ...
0
votes
1answer
531 views

Google spell check http://www.google.com/tbproxy/spell? throws 404 error [closed]

I am using jquery.spellchecker.js in my .net application to check the spellings typed by the users in the textarea. This plugin connects to http://www.google.com/tbproxy/spell? for doing the spell ...
0
votes
0answers
32 views

ASP Classic - ASPSpellCheck Empty Dictionary Language drop down

We are using aspspellcheck in our application. And we have two dictionaries (English - International & English - USA) under it's ASPSpellCheck\Dictionaries folder; it works fine when run it ...

1 2 3 4 5 14