LCase$ Function
Syntax
LCase[$](S$)
Group
Description
Returns a string from S$ where all of the uppercase letters are returned in lower case.
Parameters
| Parameters | Description |
|---|---|
| S$ | Returns the string value of this after all chars are converted to lowercase. If this value is Null, Null is returned. |
Example
Sub Main Debug.Print LCase$("Hello") '"hello" End Sub
See also