RIGHT SubroutineUsage: 
s = RIGHT(s, n) 
Description: 
Returns a string with the right-most characters of s. The number of characters to return is indicated by n. If n is greater than or equal to the length of the string, then the entire string is returned.  
For example, RIGHT("Test", 2) returns "st". 
 |