GetSpellCheckCorrectedText

RecognitionResult.GetSpellCheckCorrectedText method

Corrects text (replaces misspelled words).

public string GetSpellCheckCorrectedText(SpellCheckLanguage language = SpellCheckLanguage.Eng, 
    string dictionaryPath = null)
ParameterTypeDescription
languageSpellCheckLanguageDictionary to use.
dictionaryPathStringOptionally. Full path to the user dictionary (frequency dictionary). Dictionary file format: Plain text file in UTF-8 encoding. Word and Word Frequency are separated by space or tab.Per default, the word is expected in the first column and the frequency in the second column. Every word-frequency-pair in a separate line.A line is defined as a sequence of characters followed by a line feed ("\n"), a carriage return ("\r"), or a carriage return immediately followed by a line feed("\r\n"). Every word is expected to be in lower case.

Return Value

Text with replaced words.

See Also