LCase$()

Syntax

LCase$(Source$)

Remarks

Returns a string in which all letters of Source$ have been converted to lowercase.

Example

This example displays the string assigned to the name$ variable in lowercase:


name$ = "Stella Richards"
MsgBox LCase$(name$)

See Also

ChangeCase, UCase$()