| A function that returns the rightmost n characters of a string.
Syntax: RIGHT$(string-expression, n) A$ = RIGHT$("Hello", 3) '-- returns llo
Details Limited to strings under 32K
in size.!
For using strings > 32K, use the SnakeDile fixed LIBs dated
November, 2006 or later, or break up the string into smaller
parts. |
|