Loading TOC...

fn.upperCase

fn.upperCase(
   string as String?
) as String

Summary

Returns the specified string converting all of the characters to upper-case characters. If a character does not have a corresponding upper-case character, then the original character is returned. The upper-case characters are determined using the Unicode Case Mappings.

Parameters
string The string to upper-case.

Example

fn.upperCase("Abcd");

=> ABCD 

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