Trim()

Removes the whitespace from the front and back of the string

Usage

STRING = Trim( string )
Argument Summary
string string

Calling

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

Trim(
   string=?
);

Supports passing parameters as a structure using ArgumentCollection:

Trim( ArgumentCollection={
   string : ?
} );