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

Trim

Reads the String and removes all leading and trailing white spaces.

Usage:

Trim( String )

Parameters:

String The string that should be trimmed

Returns:

A the String without leading and trailing white spaces.

Examples:

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

See also: