LCase
Function LCase( string expression )
Returns an all lowercase version of string expression.
Syntax a = LCase( "Hello There")
Remarks
LCase will convert all alpha characters in a string to their lower case versions.
See Also:
Example Script
STRING a = "THIS IS TOO LOUD!"
a = LCASE(a) ' results in a == "this is too loud!"
PRINT a
Script Output
this is too loud!