RTrim Function

Syntax:

RTrim[$](S$)

Group:

String

Description: 

Returns the string with S$'s trailing spaces removed.

Parameters:

Parameter

Description

S$

Copy this string without the trailing spaces. If this value is Null then Null is returned.

Example:

Sub Main
  Debug.Print ".";RTrim$(" x ");"." '". x."
End
Sub

See Also:

LTrim$( ), Trim$( ).