Trim( string:string ) → string
Trims leading and trailing spaces from string and returns the result.
Example:
Output( """" + Trim(" Hello World ") + """" ); --> "Hello World"