Programming Reference Manual
 
Syntax
 
RTrim[$](S$)
 
Description
Return the string with S$'s trailing spaces removed.
 
Parameter
Description
S$
Copy this string without the trailing spaces. If this value is Null then Null is returned. 
See Also
 
Example
 
Sub Main
Debug.Print ".";RTrim$(" x ");"." '". x."
End Sub