stringUpper()

Synopsis

Returns a string with all alphabetic characters in the given string converted to upper case.

Syntax

stringUpper ( str As String ) As String 
Argument Type Description
str String a string of mixed-case characters

Example 1

Intent >stringUpper("Four Score and Seven Years Ago...")
--> "FOUR SCORE AND SEVEN YEARS AGO..."