{{getMsg('Help_YouAreHere')}}: {{page.title}} {{page.title}}

TrimRight

Reads the string and removes all trailing white spaces.

Usage:

TrimRight( String )

Parameters:

string The string that should be trimmed.

Returns:

The string without trailing white spaces.

Examples:

TrimRight(" abc ")   // Returns the string " abc".
TrimRight("abc   ")  // Returns the string "abc".

See also: