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