Questions tagged [spell-checking]

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

In computing, a spell checker (or spell check) is an application program that flags words in a document that may not be spelled correctly. Spell checkers may be stand-alone, capable of operating on a block of text, or as part of a larger application like the following:

1435 questions
-1
votes
1 answer

How to get rid off of the punctuation in c spellchecking program?

if(notfound == 1) { int len = strlen(word); //if(strcmp(word, array)== 0) if(strcmp(array3,word)==0) { word[len - 1] = '\0'; } if(strcmp(word, array2) ==0) { word[len - 1] = '\0'; } …
Kami
  • 47
  • 5
-1
votes
1 answer

Error when Initializing Net Spell dictionary C#

I am trying to check if a variable (Password) is in the English dictionary. When trying to use NetSpell dictionary check, I keep getting an error when trying to Initialize it. The error is a FileNotFoundException: Could not find file 'C:\Program…
-1
votes
1 answer

c# WPF spell checker for misspelled word strings.

I am looking for ways to automatically fix a word if the word is miss spelled and seems to be a combination of two words. For example "considerationof" should be "consideration of". Any lead or any example will be greatly appreciated. Thanks!
inavnacorp
  • 83
  • 1
  • 1
  • 7
-1
votes
1 answer

Libre office spell check not working, gives "Spell check complete" but does not mark the errors

I have Libre Office 5.03 on Debian 8_x64. I have english interface, but write in Polish. The spell check does not work. It does not mark obvious errors during writing and when I hit spellcheck icon, it immediately gives "The spellcheck is complete"…
halas
  • 21
  • 1
  • 1
  • 4
-1
votes
1 answer

Python Spell Correct

I am trying to write python script to do spell correction for languages - ENGLISH[GB], GERMAN, SPANISH, ITALIAN, FRENCH. As a first step, I installed pyenchant in my machine[64bit, python 2.7] and when I tried to import enchant package, I got…
-1
votes
2 answers

I need a language dictionary

I need to add dictionary facilities to an Asp.net MVC app. Does anyone know a library that I could use? Where can I get word definitions from? Any help is appreciated.
Roman
  • 10,309
  • 17
  • 66
  • 101
-1
votes
1 answer

Is there a way to autocorrect spellings in solr and return additional fields corresponding to corrected value?

I have used suggester component in SOLR but I feel its more limited due to the fact that I lose control over the values and the fields (if I am in interested in getting back other fields along with my corrected spelling). I am currently using…
Learner
  • 2,303
  • 9
  • 46
  • 81
-1
votes
2 answers

Using a dictionary to assign misspelled words to its line number

This is the code I currently have: from collections import defaultdict goodwords = set() with open("soccer.txt", "rt") as f: for word in f.readlines(): goodwords.add(word.strip()) badwords = defaultdict(list) with open("soccer.txt",…
jad
  • 17
  • 4
-1
votes
1 answer

Languages word list and dictionary formats

In my current application i am using a tinymce plugin called nanospell, this plugin come with many different dictionaries but it is missing one that is very important for my application (French Canadian), do you guys know where i could find a French…
Lexy Feito
  • 280
  • 1
  • 8
  • 19
-1
votes
1 answer

Custom Spellcheck generating errors

I am loading a file that holds nearly 80,000 words. It will be used as the primary spell checking dictionary. The sequence of the words has been randomized. There is another file which i am loading that has the misspelled words i have to check. Also…
-1
votes
1 answer

Stop Word flagging words with underscores as misspelled

Writing semi technical Functional Requirements 7 Business Requirements I often have to add in words that are Column Names or other data that is separated by underscores. I'd like to stop Word from flagging words with underscores as spelling…
Steve
  • 388
  • 1
  • 3
  • 14
-1
votes
1 answer

VB6.0 MDI Spell Checker

I have a VB6.0 project with MDI parent and child form. Now I need to check spelling and grammar in few text boxes on that child form. Please help with code example.
Ranajit Bose
-1
votes
1 answer

Spell correction for sentiment classification?

I am currently doing text classification and find out that some document in corpus has spelling mistakes like "goes" is written as "geos" and "available" is written as "avaliable". I am 524 smart stop words to remove stop words. This spelling…
Kashif Khan
  • 301
  • 6
  • 17
-1
votes
1 answer

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 string, let's call it $string1, open the text file and…
irfan mir
  • 373
  • 2
  • 4
  • 10
-1
votes
2 answers

Word is selected in RichTextBox and Right-clicked then shown in ContextMenu C#

Programmer, Master. Please help me... Let me learn by your example. Description : The word are shown in a popup when a word is selected and right-clicked. For example, INPUT : "Barcelona is my favorite football club". After I selected the word…