Returns the specified number of characters from the rightmost characters in a string.
RIGHT$
(string_expression,num_char)
string_expression is any string expression.
num_char is the number of characters to return. If num_char exceeds the length of the string, RIGHT$
returns the entire string.
A$ = "ABCDEFGHIJ"
FOR I = 1 TO 10
PRINT RIGHT$(A$, I)
NEXT I