upp()

Function group Execute on client Platform(s)
String YES All

Syntax

upp(string)

Description

Returns the upper case representation of a string. Any non-alphabetic characters in the string are ignored.

Example

Calculate lString as  upp('Author')
# returns 'AUTHOR'

Calculate lString as upp('oMnIs')
# returns 'OMNIS'

Calculate lString as upp(mid('peripheral',3,3))
# returns 'RIP'