Questions tagged [misspelling]
60 questions
1
vote
1 answer
Change color of last letter in a string with javascript
I am developing a small spelling program and I will need to change the color of the misspelled letter. This is what I have tried. This code detects a misspelling but it does not change the color of the misspelled…

M. El-Set
- 753
- 4
- 10
- 16
1
vote
1 answer
StanfordNLP Tokenizer
I use StanfordNLP to tokenize a set of messages written with smartphones. These texts have a lot of typos and do not respect the punctuation rules.
Very often the blank spaces are missing affecting the tokenization.
For instance, the following…

Silvia Necsulescu
- 89
- 1
- 5
1
vote
3 answers
Android Edittext: when contains misspelling word (with red underline over it), do not allow to submit
I am recently making my first Android App and it has a Edittext area which plans to only allow users to input correctly spelled words. Basically I have already learned how to use layout properties such as Android:inputType to detect any misspelled…

jinnancun
- 123
- 1
- 2
- 11
1
vote
2 answers
R function to correct words by frequency of more proximate word
I have a table with misspelling words. I need to correct those using from the words more similar to that one, the one that have more frequency.
For example, after I run
aggregate(CustomerID ~ Province, ventas2, length)
I get
1 …

GabyLP
- 3,649
- 7
- 45
- 66
1
vote
3 answers
I am writing a program which detect misspelled words with Array in Java
I was writing a program which implement a spelling checker that reads from a standard dictionary file by using Array. This is my first time using Array and I don't really know how to recall methods. So, I think I made a mistake at Boolean method…

lalala
- 21
- 1
- 2
1
vote
1 answer
Typo generator PHP
I stumbled upon a "typo generator" script. I am attempting to modify it so that a user can enter a word and generate a list of typos.
This is the script
$str = $_POST["str"];
function getTypos($str) {
$typosArr = array();
$strArr =…

Chris 'Pig' Hill
- 175
- 2
- 12
1
vote
1 answer
Android app underlines misspelled words
Possible Duplicate:
how to disable spell correction programmatically in android
I have created an app that displays slang words on the screen, such as wassup and yessir. These words are displayed in a textview, and appear underlined when the app…

user878831
- 11
- 2
0
votes
0 answers
How can I replace the misspelled words or technical language in each string of the dataframe with correct words (Dutch)?
I have a dataframe containing ~400000 rows and multiple columns. On of these columns contain strings of text. After some initial text cleaning I end up with the following subset of my dataframe:
Data cleaning
from nltk.corpus import stopwords
from…

user22247751
- 9
- 2
0
votes
1 answer
Using stringdist in R with big dataset (1.8 millions rows)?
I'm working with a dataset(df) which contains a column call job, where people just enter their job position.
The problem is because the data is typed manually so they contains a lot of misspelling errors. To do some calculations grouping by job, I'm…

Tung Anh
- 3
- 2
0
votes
1 answer
Powershell script not working (Misspelling Project)
$app = New - Object - ComObject 'Word.Application'
$app.visible = $true
$doc = $app.Documents.Add(
}
$doc.Content.text = 'Here's an exmple of mispeled txt."
$selection = $app.Selection
$report = @(
}
foreach($word in ($doc.Words | Select -…

fifafular92
- 15
- 5
0
votes
1 answer
How to handle typos when cleansing a text file?
I'm trying to clean a text file in python. I noticed the text file I'm reading in has several typos (ie. chevroelt instead of chevrolet). I have a specific list of typos that I'd like to address. How would I approach making these edits as I read in…

Mitchell Walker
- 11
- 2
0
votes
3 answers
Elasticsearch Term suggester is not returning correct suggestions when one character is missing (instead of misspelling)
I'm using Elasticsearch term suggester for spell correction. my index contains huge list of ads. Each ad has subject and body fields. I've found a problematic example for which the suggester is not suggesting correct suggestions.
I have lots of ads…

Code_Worm
- 4,069
- 2
- 30
- 35
0
votes
0 answers
How do I find misspelled names in a column?
I have a list of names and I want to check, whether a name is present in the names in the table or not. But I have to think also on misspelling the name, so I want to find those names, which are misspelled with PARAMETER number of characters, i.e.…

Szasza
- 1
0
votes
1 answer
Synonyms and spelling mistakes generator for LUIS
I am working on a chat bot which uses LUIS and I have lots of entities in my project. Since LUIS is not identifying spelling mistakes and synonyms , we are working on adding these manually. But since this is a lot of manual effort, I wanted to know…

Sharvani
- 61
- 1
- 2
- 12
0
votes
0 answers
SOLR: minimum token size to be be spellchecked/synonymized
I'm facing the following issue: during the search with "ΚΩΣ" term, it starts creating combinations as if user have misspelled the search word:
What I can't undetstand is how to configure this logic (as you can see on the screen, it has combinations…

Roma M'
- 23
- 4