LCase Function

Converts all uppercase letters in a string to lowercase.

See also: UCase Function

தொடரமைப்பு:

LCase (Text As String)

திரும்பும் மதிப்பு:

String

அளவுருக்கள்:

Text: Any string expression that you want to convert.

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

எடுத்துக்காட்டு:


Sub ExampleLUCase
Dim sVar As String
    sVar = "Las Vegas"
    Print LCase(sVar) ' "las vegas"
    Print UCase(sVar) ' "LAS VEGAS"
End Sub

Please support us!