StrLower
Converts a string to lowercase.
Syntax
StrLower(String)
String:
The source string.
Return Value
The string (as lowercase).
Related Functions
Example
Variable=StrLower("ABCDEF");
! Sets Variable to "abcdef".
Variable=StrLower("AbCdEf");
! Sets Variable to "abcdef".
See Also