function/RIGHT$                                               function/RIGHT$
 
 NAME
     RIGHT$ -- Strips string from the left
 
 ABBREVIATION
     r <shift> I

 SYNOPSIS
     RIGHT$(<string>,<length>)

 FUNCTION
     This function returns a string containing the right-most <length> 
     characters of string <string>.
 
 INPUTS
     <string> - source string
     <length> - number of characters to be included in result string
 
 RESULT
     String containing right-most <length> characters of the string <string>.

 EXAMPLES
     None
 
 NOTES
     None
 
 BUGS
     None
 
 SEE ALSO
     LEFT$()
     MID$()