UCase()

Converts the alphabetic characters in a string to uppercase.

UCase( string=string );

Returns: String

Argument Description
string
string, required

A string or a variable that contains one

Examples

// create variable with a string of text
  foo = "Hello World!";
  // output variable in upper case
  writeOutput(UCase(foo));

See also