DIAdem Help

Method: LCase for VBS

  • Updated2024-09-12
  • 1 minute(s) read

Method: LCase for VBS

Converts a text to lowercase.

vLCase = Object.LCase(string)
ObjectVBS
Object with this method. You do not need to specify this object.
stringVariant
Specifies any text.
vLCaseVariant
Receives the text in lowercase.

The following example converts a text to lowercase:

Dim MyString
MyString = LCase("DIAdem!")
Call MsgBox(MyString)   ' Returns "diadem!"

See Also

Objects Overview

Related Topics

Filter | InStr | InStrB | InStrRev | Join | LCase | Left | LeftB | Len | LenB | LTrim | Mid | MidB | Replace | Right | RightB | RTrim | Space | Split | StrComp | String | StrReverse | Trim | UCase