Strings.Left Method
Returns a string containing a specified number of characters from the left side of a string.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
Parameters
- str
- Type: System.String
Required. String expression from which the leftmost characters are returned.
- Length
- Type: System.Int32
Required. Integer expression. Numeric expression indicating how many characters to return. If 0, a zero-length string ("") is returned. If greater than or equal to the number of characters in str, the entire string is returned.
Return Value
Type: System.StringReturns a string containing a specified number of characters from the left side of a string.
| Exception | Condition |
|---|---|
| ArgumentException |
Length < 0. |
To determine the number of characters in str, use the Len function. If used in a Windows Forms application, or any other class that has a Left property, you must fully qualify the function with Microsoft.VisualBasic.Left.
Note
|
|---|
|
The LeftB function in previous versions of Visual Basic returns a string in bytes rather than characters. It is used primarily for converting strings in double-byte character set (DBCS) applications. All current Visual Basic strings are in Unicode, and LeftB is no longer supported. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note