RTri' Function

Syntax                  RTri'(')

Group                   String

Description           Return the string with ''s trailing spaces removed.

Parameter              Description

'                               Copy this string without the trailing spaces. '

See Also               LTri'( ), Tri'( ).

Example               '#Language "WWB.NET"
Sub Main
    Debug.Print "."; RTri'("  x  "); "." '".  x."
End Sub