lTrim$()
Left trim string. Return string without left spaces. You can omit the
dollar character so you can alternatively write it as lTrim() .
Syntax:
string
= lTrim$(
string
)
string
= lTrim(
string
)
Example:
a$ = " test string"
b$= lTrim( a$ )
print a$
print b$
See also trim$() and rTrim$() commands.