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