LTRIM
lt = LTRIM (s)
Removes leading white-spaces from string s.
Example:
s = "   test   "
t = ltrim(s)
print "-" + s + "-"
print "-" + t + "-"
' Output:
' -    test    -
' -test    -Code samples using LTRIM
    
  lt = LTRIM (s)
Removes leading white-spaces from string s.
s = "   test   "
t = ltrim(s)
print "-" + s + "-"
print "-" + t + "-"
' Output:
' -    test    -
' -test    -