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 out-of-bound values are given for the 'Length' parameter, in that case, it will simply return the result which matches best.Example:
Debug Right("This is Art", 3) ; Will display "Art"
Supported OS
All