Left$() |
Previous Next |
Left$(<String>,<Length>)
|
Part
|
Description
|
<String>
|
Required. The string expression from which the leftmost characters
are returned.
|
<Length>
|
Required. The length of characters to return
|
a$ = "Hello World"
Print Left$(a$, 5)
|