RTrim Function |
RTrim[$](S$)
Returns the string with S$'s trailing spaces removed.
Parameter |
Description |
Copy this string without the trailing spaces. If this value is Null then Null is returned. |
Sub Main
Debug.Print ".";RTrim$(" x ");"." '". x."
End Sub