fn:normalize-unicode( $arg as xs:string?, [$normalizationForm as xs:string] ) as xs:string?
Return the argument normalized according to the normalization criteria for a normalization form identified by the value of $normalizationForm. The effective value of the $normalizationForm is computed by removing leading and trailing blanks, if present, and converting to upper case.
Parameters | |
---|---|
arg | The string to normalize. |
normalizationForm | The form under which to normalize the specified string: NFC, NFD, NFKC, or NFKD. |
fn:normalize-unicode("Abcd") => Abcd
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.