LCase$ Function
SyntaxGroupLCase[$](S$)
StringDescription
Return a string from S$ where all the uppercase letters have been lowercased.
See Also
Parameters Description S$ Return the string value of this after all chars have been converted to lowercase. If this value is Null then Null is returned.
StrComp( ), StrConv$( ), UCase$( )
Sub Main Debug.Print LCase$("Hello") '"hello" End Sub