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 do spell check to type the text for TextBox in vb.net?

I will try the way of the following code: 'Click on Button1 spell checks Text1 textbox Dim strResultText As String Dim sc As New SpellChecker sc.OpenDictionary "c:\SpellUS.lex" Private Sub Button1_Click() TextBox1.Focus() strResultText =…
sakthivignesh
  • 117
  • 1
  • 2
  • 9
-1
votes
1 answer

Spell checking with custom dictionary

Need your guidance! Want to check some text file for any spelling mistakes against custom dictionary. Here is the code: Dictionary=set(open("dictionary.txt").read().split()) print Dictionary SearchFile = open(input("sample.txt")) WordList = set() …
Aikin
  • 319
  • 2
  • 5
  • 13
-1
votes
3 answers

which spellchecker to use with PHP

Currently I am using Spellify for my project but its creating problem in ie7 and some people don't like pressing ignore every time. i have checked aspell and pspell. Can any one please suggest better spell checking utility with PHP. or something…
henna
  • 368
  • 3
  • 13
-1
votes
1 answer

Suggestion popup to wrong spelled word in Swing application

I am web developer and don't have much knowledge about swing applications. I am doing a desktop application, in that I need to give a suggestion popup to wrongly spelled words. Please someone specify any sample code for that. Thanks in advance.
Ibrahim
  • 1
  • 1
  • 5
-2
votes
1 answer

Getting PHP's Pspell to return corrected word as a variable

I have this script:
faq
  • 2,965
  • 5
  • 27
  • 35
-2
votes
1 answer

Why doesn't the import in the following Jupytor Notebook work?

So I used ! sys instead of use "pip" directly. From what I searched, this should be the best practice. But the second cell doesn't print anything. I got the code from this web, it should work. But can anyone tell me why it didn't. geekforgeek
wangge
  • 145
  • 5
-2
votes
2 answers

Using Squiggly in Flash CS5

This is going to seem quite a lame question - basically we have downloaded a package called Squiggly - http://labs.adobe.com/technologies/squiggly/ - and we are trying to implement it into Flash (using AS3, CS5). And none of us are very good at…
rickyduck
  • 4,030
  • 14
  • 58
  • 93
-2
votes
1 answer

when using a trie i get an unusual error that shouldnt be possible

I am working on a simple spell checker which grabs the alphabet from a text file and then checks any word for whether it is a correct spelling or not using a trie Code import java.io.BufferedReader; import java.io.FileReader; import…
danCodes
  • 23
  • 6
-2
votes
1 answer

Java method for checking spelling

Possible Duplicate: Looking for Java spell checker library Is there any method for checking spelling of english words. I have word game where I have to select letters to form a word and then check it for spelling, if correct then show on the…
-2
votes
1 answer

How to split punctuation from words in python?

I am attempting to create a spell checking function that reads in a text file containing a passage that contains several misspelt words. For example: "My favorite subjects are: Physcs, Maths, Chemistree and Biology - I find it necesary to use my…
-2
votes
3 answers

Do you know a free or open source website spell-checker?

We are looking for a free to use website software for spell checking our sites before they go to production. A basic search online took me to these pages: Net MECHANIC Text Trust Orango I did the trial in NetMechanic and I got a bogus email…
Geo
  • 8,663
  • 13
  • 63
  • 93
-2
votes
1 answer

CS50 speller how to test if it works

I think this code loads the dictionary, but how do I check that it works? ''' #include #include #include "dictionary.h" //number of linked lists in hashtable #define HASH_SIZE 5000 #define LENGTH 45 char word; //create node typedef…
-2
votes
2 answers

WebSpellChecker in CKEDITOR is not working

If I try to see the suggestion of any word then its only giving me loading .. can you please tell me whats the issue and how it can be fixed ? I am not able to find out how to fix it. Please help me if anyone know how to fix it.Loading error image
-2
votes
2 answers

AngularJS - spell checker in german

I have found a spell checker in english: spellchecker english Is there also one in german?
quma
  • 5,233
  • 26
  • 80
  • 146
-2
votes
1 answer

How to improve NetBeans spell checker?

I love NetBeans and don't want to use phpshtorm instead. But NetBeans doesn't check my words when I write:
If I write it outside the class, it will say me that this word does not exist.
1 2 3
95
96