RTrim$ Function
Syntax
RTrim[$](S$)
Group
Description
Returns the string with S$'s trailing spaces removed.
Parameters
| Parameters | Description |
|---|---|
| S$ | Copies this string without the trailing spaces. If this value is Null, Null is returned. |
Example
Sub Main Debug.Print "."; RTrim$(" x "); "." '". x." End Sub
See also