
spell.isCorrect( uri as String[], word as String ) as Boolean
Returns true() if the specified word is spelled correctly,
otherwise returns false(). A word is considered to be spelled
correctly if it is in the specified dictionary.
| Parameters | |
|---|---|
| uri | The URIs of the dictionaries to use. |
| word | The word to check. |
spell:isCorrect function is a built-in function and
does not require the var spell = require("/MarkLogic/spell")
statement in the Javascript prolog.
spell.isCorrect('en-utf8.xml','occasionally');
=> true
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.