NexJ Logo

Upper()

Converts all of the characters in the specified string of text to upper case. This function takes a string value as an argument and returns a string value.

Syntax

Upper(<text_to_convert>)

Input

text_to_convert

string, null

The text to convert to upper case.

Output

string

Examples

  • The expression Upper("abc") returns "ABC".
  • The expression Upper("Abc") returns "ABC".
  • The expression Upper("ABC") returns "ABC".