Trim

Removes all leading and trailing white space characters from the input string object.

SYNTAX
Trim(inString) 
ARGUMENTS inString The input string to trim
RETURN The string that remains after all white space characters are removed from the start and end of the given input string.
EXAMPLE
retString = Trim(" abc XYZ ") 
; Result: retString = "abc XYZ"