LTRIM

lt = LTRIM (s)

Removes leading white-spaces from string s.

Example:

s = "   test   "
t = ltrim(s)
print "-" + s + "-"
print "-" + t + "-"

' Output:
' -    test    -
' -test    -