LCase
Uppercase a string
Method Signature
LCase(string=[string])
Arguments
Argument
Type
Required
Description
Default
string
string
true
The string to uppercase
Examples
lowercase BLDocs Rock
lCase( "BLDocs Rock" );
Result: bldocs rock
Additional Examples
// create variable with a string of text
foo = "Hello World!";
// output variable in lower case
writeOutput( LCase( foo ) );
Related
Last updated
Was this helpful?