Name
Left Function
Class
Microsoft.VisualBasic.Strings
Syntax
Left(str, length)-
str(required; String) The string to be processed
-
length(required; Long) The number of characters to return from the left of the string
Return Value
String
Description
Returns a string containing the leftmost
length characters of
str
Rules at a Glance
If
lengthis 0, a zero-length string (“”) is returned.If
lengthis greater than the length ofstr,stris returned.If
strisNothing, Left returnsNothing.
Programming Tips and Gotchas
Use the Len function to determine the overall length of
str.The Left function corresponds to the BCL System.String class’ Substring method. For example, the following two assignments to the
sCityvariable are functionally identical:Dim sCity As String Dim sLocation As String = "New York, New York" sCity = Left(sLocation, 8) sCity = sLocation.Substring(0, 8)
Note that the Substring method uses a zero-based index to determine the starting position of the substring.
See Also
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access