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
uCase( "BLDocs Rock" );
Result: BLDOCS ROCK
Additional Examples
// create variable with a string of text
foo = "Hello World!";
// output variable in upper case
writeOutput( UCase( foo ) );
Related
Last updated
Was this helpful?