TrimStart

Removes all leading white space characters from the input string.

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