Right$ Function
SyntaxGroupRight[$](S$, Len)
StringDescription
Return the last Len chars of S$.
Note: A similar function, RightB, returns the last Len bytes.
See Also
Parameters Description S$ Return the right portion of this string value. If this value is Null then Null is returned. Len Return this many chars. If S$ is shorter than that then just return S$.
InStr( ), InStrRev( ), Left$( ), Len( ), Mid$( ), Replace$( )
Sub Main Debug.Print Right$("Hello",3) '"llo" End Sub