Tagged Questions

flagging words in a document that may not be spelled correctly

learn more… | top users | synonyms (2)

140
votes
17answers
21k views

How does the Google “Did you mean?” Algorithm work?

I've been developing an internal website for a portfolio management tool. There is a lot of text data, company names etc. I've been really impressed with some search engines ability to very quickly ...
61
votes
11answers
16k views

Where can I learn more about the Google search “did you mean” algorithm? [closed]

Possible Duplicate: How do you implement a “Did you mean”? I am writing an application where I require functionality similar to Google's "did you mean?" feature used by their ...
23
votes
9answers
6k views

Detecting syllables in a word

I need to find a fairly efficient way to detect syllables in a word. E.g., invisible -> in-vi-sib-le There are some syllabification rules that could be used: V CV VC CVC CCV CCCV CVCC *where V is ...
23
votes
4answers
4k views

Inline Disabling of Firefox Spellcheck?

I researched this a while ago and can't remember how to do it. I want to be able to prevent Firefox from running it's spell-checking functionality on certain input fields from within the page. I know ...
21
votes
3answers
3k views

What algorithm gives suggestions in a spell checker?

What algorithm is typically used when implementing a spell checker that is accompanied with word suggestions? At first I thought it might make sense to check each new word typed (if not found in the ...
17
votes
8answers
2k views

How to correct the user input (Kind of google “did you mean?”)

I have the following requirement: - I have many (say 1 million) values (names). The user will type a search string. I don't expect the user to spell the names correctly. So, I want to make kind of ...
15
votes
5answers
627 views

Creating a “spell check” that checks against a database with a reasonable runtime

I'm not asking about implementing the spell check algorithm itself. I have a database that contains hundreds of thousands of records. What I am looking to do is checking a user input against a certain ...
15
votes
8answers
5k views

What is the best spell checking library for C#? [closed]

What's the best spell checking library for C# / .net? (This will be web-based, so the built in spell check for WPF won't work.)
15
votes
10answers
3k views

.NET Spell Check control?

Are there any libraries out there (preferably a self contained Text Edit Control) for .NET that have Spell Check capabilities. I would like to add the typical red underline to miss-spelled words in ...
13
votes
10answers
1k views

How do you spell check a website?

I know that spellcheckers are not perfect, but they become more useful as the amount of text you have increases in size. How can I spell check a site which has thousands of pages? Edit: Because of ...
12
votes
6answers
4k views

Looking for Java spell checker library

I am looking for an open source Java spell checking library which has dictionaries for at least the following languages: French, German, Spanish, and Czech. Any suggestion?
12
votes
7answers
3k views

How do spell checkers work?

I need to implement a spell checker in C. Basically, I need all the standard operations... I need to be able to spell check a block of text, make word suggestions and dynamically add new words to the ...
11
votes
4answers
651 views

What is a good algorithm to traverse a Trie to check for spelling suggestions?

Assuming that a general Trie of dictionary words is built, what would be the best method to check for the 4 cases of spelling mistakes - substitution, deletion, transposition and insertion during ...
10
votes
3answers
623 views

Spelling checker for .NET

Is there anyway to create C# spelling checker without using Office library? I would be happy with the simplest possible solution.
9
votes
3answers
324 views

Match similar names in C#

I'm currently working on a project that requires me to match our database of Bands and venues with a number of external services. Basically I'm looking for some direction on the best method for ...
8
votes
1answer
414 views

How do I change the highlight style in my vim spellcheck?

Right now, when I do :set spell in my vim, I get spelling errors highlighted as if they are selected text. What I want is a ms-word like underlining of spelling errors. I tried to lookup :help spell ...
8
votes
2answers
1k views

How can I disable the spell checker on text inputs on the iPhone

Sometimes the spell checker is unnecessary, captchas, usernames, emails, etc. Is there a way disable it on some text inputs/text areas?
7
votes
2answers
328 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 ...
7
votes
2answers
367 views

Linux tool to check spelling of comments in c/c++ source code

What software do you suggest to check spelling of comments contained in c/c++ source code (especially doxygen comments)? I'm looking something that will parse only comments so I can easily find ...
7
votes
1answer
1k views

Where to find dictionaries for other languages for IntelliJ ?

IntelliJ spellchecker comes with only English and Arabic bundled (strange, I think it made in east Europe, they didn't even bundle their language?). My customer is German so all my code is mixed ...
7
votes
1answer
655 views

pros and cons of various spell checking modes in emacs

I'm wondering if anyone could weigh in on pros and cons of different spelling modes for Emacs. Emacswiki-CategorySpelling mentions three modes for spell checking: Flyspell mode (default one) ...
7
votes
2answers
2k views

Eclipse spell checker - How do I remove a word I added?

I accidentally added a word I'm forever mis-spelling into Eclipse's spell-checker dictionary. How do I get it back out again?
7
votes
3answers
733 views

Batch source-code aware spell check

What is a tool or technique that can be used to perform spell checks upon a whole source code base and its associated resource files? The spell check should be source code aware meaning that it would ...
7
votes
6answers
451 views

Best way to incorporate spell checkers with a build process

I try to externalize all strings (and other constants) used in any application I write, for many reasons that are probably second-nature to most stack-overflowers, but one thing I would like to have ...
6
votes
3answers
615 views

Using the Levenshtein distance in a spell checker

I am working on a spell checker in C++ and I'm stuck at a certain step in the implementation. Let's say we have a text file with correctly spelled words and an inputted string we would like to check ...
6
votes
3answers
397 views

Spell checker for .NET / C#

Somebody knows about a good multilanguage spell checker for C# - .NET? I mean, I have googled it and I found some alternatives, but someone have a success story with one? I need to add a spell ...
6
votes
1answer
173 views

Is it possible to toggle a vim option when switching to insert mode?

I recently discovered the spell option thanks to this answer on Code Review, and I feel that the option is both really useful (while editing) and really annoying (while reading code, because of all ...
6
votes
2answers
2k views

Turn off Chrome/Safari spell checking by HTML/css

Is there a way for a web developer to turn off Chrome/Safari/WebKit's spellchecking on particular input or textarea elements? I mean either by special tag attribute or a proprietary CSS instruction. ...
6
votes
3answers
1k views

Is there a spell checker for ASP.NET MVC?

I'm looking for a simple spell checker to use with an text input. My application is being developed in ASP.NET MVC 2 within VS2010. I'm using the 4.0 version of the framework and my application will ...
6
votes
1answer
260 views

VIM Spellcheck, Within Quoted Strings - PHP

I was wondering if it would be possible to run the vim spell checker while coding with PHP. I can run it if I disable syntax highlighting, and it highlights almost all methods/function names because ...
6
votes
2answers
141 views

Is vim able to detect the natural language of a file, then load the correct dictionary?

I am using several languages, and currently I am obliged to indicate to vim with which of these the spell check must be done. Is there a way to set up vim so that it automatically detects the correct ...
6
votes
5answers
1k views

Aspell Dictionary can't be opened

When I try to add a word or to ignore all, Aspell throws the error 'the file "C:/Program Files (x86)/Aspell/en.pws" cannot be opened for writing'. Anyone know what is causing this problem ...
6
votes
2answers
505 views

How do I add spell checking to a JTextArea?

I have a small Java application that has a JTextArea where the user enters text. I would like to add spell checking capabilities to this component similar to the way that Microsoft Word does it, i.e. ...
6
votes
2answers
610 views

How to change word recognition in vim spell?

I like that vim 7.0 supports spell checking via :set spell, and I like that it by default only checks comments and text strings in my C code. But I wanted to find a way to change the behavior so that ...
6
votes
2answers
1k views

Best spell checking api for Java

What is the best Java spell checking API? Free or purchased, must be royalty-free.
6
votes
8answers
2k views

.NET text editor that accepts HTML and input/output with spellchecking

I have been searching for something that does this for a while now, but with no luck yet... We have an internal application that stores/uses text in HTML format. Now I am looking for a new control ...
6
votes
5answers
1k views

What's the best way of spell checking an entire web site in one go?

Preferably server-side (Linux) or client-side (Windows) tools rather than web-based tools. Although, come to think of it, web tools would be interesting too. And there must be an easy mechanism of ...
5
votes
2answers
157 views

What is a good Javascript or Rails Spelling Checker

Have you guys used any good spelling checker script? I have tried JSpeller and AfterTheDeadline so far. I am using RoR and Jquery. The language is pt-BR
5
votes
2answers
266 views

Where can I find a free, easy to implement spellcheck component for .NET?

This may be a tall order, but I'd like to find a spellchecker component that is easy to implement (I only need to spellcheck one TextBox). I've looked around and cannot seem to find anything that ...
5
votes
1answer
428 views

Adding words to spellchecker dictionary in NetBeans?

My NetBeans dictionary is kind of... illiterate? It's flagging words like "website" and the "doesn" part of doesn't. I right-clicked expecting to see your standard Add to dictionary... option but ...
5
votes
2answers
2k views

Disable spell checking on IntelliJ IDEA

I'm trying - since almost an hour - to disable spell checking in MacOS's IntelliJ IDEA version 8.1. I hate to say: it's a very stupid question: how do I get rid of it? :-) Does someone know that? ...
5
votes
5answers
172 views

Is there a way to force Visual Studio 2008 (or below) to use a spellchecker for comments?

I'm not sure if this can be done at all, but it'd certainly make my life easier. I was wondering if maybe the MS spellchecker could be used as a plug-in for other applications... or something like ...
5
votes
3answers
504 views

How can I flag source code in an MS Word document to not spell check?

Sometimes, for what ever reason, I copy source code into either a word document, or an email ... which in Outlook, I believe, is using Word. Anyway, it would be nice if I could spell check the ...
5
votes
6answers
1k views

Spell checking city names?

I figure this problem is easier than just a regular spell checker since the list of U.S cities is small compared to all known English words. Anyhow, here's the problem: I have text files with full of ...
4
votes
1answer
94 views

Why is Eclipse wrongly finding spelling errors in Ruby comments?

I am using the 3.7.1 version of the Eclipse SDK, and it is flagging up every word in my Ruby comments as being misspelled. This is not happening in, say, JavaScript or HTML files, even when viewed ...
4
votes
5answers
164 views

Remove letter duplicates that are in a row

Looking for a fast way to limit duplicates to a max of 2 when they occur next to each other. For example: jeeeeeeeep => ['jep','jeep'] Looking for suggestions in python but happy to see an example ...
4
votes
2answers
533 views

solr suggester not returning any results

I've followed the solr wiki article for suggester almost to the T here: http://wiki.apache.org/solr/Suggester. I have the following xml in my solrconfig.xml: <searchComponent ...
4
votes
2answers
162 views

Can aspell output line number and not offset in pipe mode?

Can aspell output line number and not offset in pipe mode for html and xml files? I can't read the file line by line because in this case aspell can't identify closed tag (if tag situated on the next ...
4
votes
2answers
368 views

Is it possible to disable spellcheck in a textarea via JavaScript?

Is it possible to disable spellcheck in a textarea via JavaScript? I've been looking at the HTML5 'spellcheck' attribute, and I can get it to work on its own. However, I'd like to be able to change ...
4
votes
2answers
464 views

What is a good sample solrconfig.xml for django-haystack?

I am building out a solr instance for django, but the example provided from solr is super verbose, with many things that are not relevant to haystack. A sample with spelling suggestions, morelikethis, ...

1 2 3 4 5 8