UpperCase Function

Top  Previous  Next

Returns the upper-case version of the given string

 

Short form: "ucase".

 

Syntax

 

value = UpperCase( inputString )

 

Parameters

inputString

 

string to lower case

 

 

 

returns

 

the upper-cased version of the input string

 

Examples

The following examples illustrate the use of the UpperCase  function:

 

value = UpperCase( "Hello" )    ' Returns "HELLO"

value = UpperCase( "hello" )    ' Returns "HELLO"