Breadcrumbs

toUpper() Operation


Syntax


set upperCaseString = aString.toUpper() 
set upperCaseString = toUpper(LITERAL)


Semantics

Changes all lower case letters to upper case letters. Returns a new string. The state of the current string is not changed.

Substitutables

aString

Can be any variable or object attribute having the type String.  

LITERAL

String literal.

Examples


set upperCaseString = stringSet.s1.toUpper();