Loading TOC...

spell:is-correct

spell:is-correct(
   $uri as xs:string*,
   $word as xs:string
) as xs:boolean

Summary

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.

Usage Notes

The spell:is-correct function is a built-in function and does not require the import module statement in the XQuery prolog.

Example

spell:is-correct("en-utf8.xml","occasionally")

=> true()

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.