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

What is the best way to check "method call" match format using checkstyle?

I have a group of methods that belong a single class that should contain at-least 2 parameters. The first one should be of type "literal" string (e.g. instance.do("literal_string", obj) - should be specified just right in the method call line…
sereGkaluv
  • 31
  • 6
-2
votes
2 answers

Im using a pluing called JavascriptSpellCheck and I need to set some dymamic text into the textarea, its posible?

I have a simple form, with a textarea field, I need to append some texts to textarea with JavaScriptSpellCheck plugin attached. I have tried: .append, .html, .text using jQuery , and javascript but nothing happens. I read the documentation…
-2
votes
2 answers

Create a spell checker in C

So I need to create a spell checker that takes an input file and checks it with a given dictionary file, and outputs the misspelled words. I have an idea of how to do it, but I get stuck where I need to compare the words in each file. I do not know…
bikerguy
  • 1
  • 2
-2
votes
1 answer

I am working on a program that checks the spelling of a txt file using a given dictionary in java. I am not getting the right outputs

I am having issues with this program. I cannot get it to read more than the first line of code in the dictionary file. The dictionary file has around 22000 words. If someone could figure this out that would be great. I then could move along with the…
-2
votes
1 answer

Making a spell check utility

This idea just popped into my head, so I don't have any code to show for it, but I was curious to know the answer. How is spell check implemented on most major word processors? I'm most curious to know what kind of data structures would be used in…
varatis
  • 14,494
  • 23
  • 71
  • 114
-3
votes
1 answer

backend spellchecking library c#

In my project I need to check a bunch of text for spelling mistakes. I get the text over a webservice and have no GUI component from which I could use Spellchecking functionality. Is there a standard spell checking function that I can use? Is there…
Martin
  • 53
  • 1
  • 9
-3
votes
2 answers

Vba macro to check if dates match and copy data to shet if the corresponding row contains a string

Hello im fairly new to vba but i been struggling with a code in working on, i need to check if the dates on sheet1 match another in sheet2 and copy data from sheet2 to sheet1 if the corresponding row from sheet2 contains a certain text string. Any…
Roger
  • 11
  • 2
-4
votes
1 answer

Case Sensitive Spell Check and Correction for Technology names

I have 200 words of technology names (such as ASP.NET, C#, Java) which I have to spell check for proper naming conventions: Asp.Net becomes ASP.NET JAVA becomes Java Mysql becomes MySQL Jquery becomes jQuery Testng becomes TestNG Nodejs becomes…
-4
votes
1 answer

I am searching for a spell checker which is easily implemented to work with django and python 2.7

I want to check for a spelling mistakes while user is typing and it should support different languages. Thanks for your help guys
tobiascm
  • 1
  • 1
-6
votes
1 answer

im trying to make a spell checker using strcmp

while (exit!=true ) { input sprintf(thename, "person%d.txt", thecounter); searchfile=fopen(thename,"r"); fscanf(searchfile,"%d%s%s%f%f\n",&theperson.id,theperson.firstname,theperson.lastname ,&theperson.sallary , &theperson.saving); …
1 2 3
95
96