right$()

文字列の右端から与えられた文字数分の文字を戻す。
ドルマークは省略可能なのでright()
でもよい。

Syntax:
string = right$( string , number )
string = right( string , number )

Example:
a$="hello world"
'next line will print "rld"
print( right$( a$,3 )
'next line will print "o world"
print( right$( a$,7 )

See also left$() and mid$() commands.