LCASE$/WLCASE$ |
Top Previous Next |
Syntax STRING = LCASE$(str as STRING) WSTRING =WLCASE$(str as WSTRING) Description Converts a string to all lower case. Parameters str - The string to convert. Return value A copy of the input string converted to lower case. Remarks The input string remains unchanged. See Also: UCASE$ Example usage PRINT LCASE$("CONVERT TO LOWER CASE PLEASE") |