Returns a specified number of characters from the left side of a string.
Syntax –
Left(string, length)
Example –
- Dim MyString, LeftString
- MyString = "VBSCript"
- LeftString = Left(MyString, 3) ' LeftString contains "VBS".
by Editorial Staff | Last Updated On Jul 14, 2014 | Definitions | 0 comments
Returns a specified number of characters from the left side of a string.
Syntax –
Left(string, length)
Example –
- Dim MyString, LeftString
- MyString = "VBSCript"
- LeftString = Left(MyString, 3) ' LeftString contains "VBS".