LCase$ Function

Syntax

LCase[$](S$)

Group

String

Description

Return a string from S$ where all the uppercase letters have been lowercased.

Parameter 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.

See Also: StrComp( ), StrConv$( ), UCase$( ).

Example

Sub Main
Debug
.Print LCase$("Hello") '"hello"
End
Sub