var$ = RightStr(string$, len[, encoding])
len characters from string$.
The optional encoding parameter can be used to set the character encoding
to use. This defaults to the default string encoding set using SetDefaultEncoding().
See Character encodings for details.
test$ = RightStr("Hello World!", 6)
Print(test$)
Prints "World!" to the screen.