Right()
Syntax
Result$ = Right(String$, Length)Description
Returns the last 'Length' number of characters from the right side of the string. This function is safe to use even if you give out-of-bound values for the 'Length' parameter (it will simply return the best matching result).
Example :Debug Right("This is Art", 3) ; Will display "Art"
Supported OS
All