You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Syntax
set upperCaseString = aString.toUpper() 
set upperCaseString = toUpper(LITERAL)
SemanticsChanges all lower case letters to upper case letters. Returns a new string. The state of the current string is not changed.
SubstitutablesaString Can be any variable or object attribute having the type String.  
LITERAL String literal.
Examples
set upperCaseString = s1.toUpper();

Related Pages:

  • No labels