BASIC FUNCTIONS SECTION 5, 19
RIGHT$
5, 19,6 Function RIGHT$ returns the last n characters of a given
string,
Syntax
RIGHT$( "STRING", N)
where N is the number of rightmost characters to be
returned,
Ex88')les RIGlT$("A1lCDEF",3)
returns DEF
Remarks Both string and n must be enclosed in parentheses and can
be expressions. If length of the string is less than n
then the entire string is returned.
VER.V09F
If A$ = "ABCDEF"
then:
RIGlT$(A$;0)
= null string
RIGHT$(A$,20) = ABCDEF
PAGE 5 - 123