Last updated 19 days ago
Was this helpful?
Uppercase a string
UCase(string=[string])
string
true
The string to uppercase
uCase( "BLDocs Rock" );
Result: BLDOCS ROCK
// create variable with a string of text foo = "Hello World!"; // output variable in upper case writeOutput( UCase( foo ) );