Rtrim()

Trims the whitespace from the right side of the string only, returning the new string

Usage

STRING = Rtrim( string )
Argument Summary
string string

Calling

Supports named-parameter calling allowing you to use the function like:

Rtrim(
   string=?
);

Supports passing parameters as a structure using ArgumentCollection:

Rtrim( ArgumentCollection={
   string : ?
} );