For the complete documentation index, see llms.txt. This page is also available as Markdown.

UCase

Uppercase a string

Method Signature

UCase(string=[string])

Arguments

Argument
Type
Required
Description
Default

string

string

true

The string to uppercase

Examples

uppercase BLDocs Rock

Run Example

uCase( "BLDocs Rock" );

Result: BLDOCS ROCK

Additional Examples

Run Example

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

Last updated

Was this helpful?