Programming Reference Manual
 
Syntax
 
RightB[$](S$, Len)
 
Description
Return the last Len bytes of S$.
 
Note: A similar function, Right, returns the last Len characters.
 
Parameter
Description
S$ 
Return the right portion of this string value. If this value is Null then Null is returned. 
Len 
Return this many bytes. If S$ is shorter than that then just return S$.
See Also
Example
 
Sub Main
Debug.Print RightB$("Hello",4) '"lo"
End Sub