Last Modified: 9/9/2021
Returns a String that contains the specified number of characters from the left side of a String.
Name | Type | Required | Description |
Str | String | Yes | The expression to return the leftmost characters from. |
Length | Integer, Long | Yes | The number of characters to return. |
Syntax: Left$(<Str>, <Length>) |
a$ = "Hello World" Print Left$(a$,5) |