|
UpperCase Function |
Top Previous Next |
|
Returns the upper-case version of the given string
Short form: "ucase".
Syntax
value = UpperCase( inputString )
Parameters
Examples The following examples illustrate the use of the UpperCase function:
value = UpperCase( "Hello" ) ' Returns "HELLO" value = UpperCase( "hello" ) ' Returns "HELLO" |