$strLower = Lower (
<string>
)
Returns a copy of the
<string>
converted to lowercase.
Parameters
<string>
String to be converted.
Return Value
Returns the converted string in lower case.
Remarks
None.
Example
$a = "ABCD" $b = Lower($a)
$b
now contains
"abcd"
.