RETURNS THE STRING REMOVING LEADING SPACES FROM THE STRING S (ON THE LEFT)
ACTION
The function LTRIM$(S) returns the string removing leading spaces from the string S, that is on the left.
Remark: the keyword LTRIM$ ends by '$' : it means that the returned value is a string.
SYNTAX:
Result$=LTRIM$(S)
USE ERROR EXAMPLE
print ltrim$(" abc ")+"<-"
print "abc <-"
LTRIM$()
LTRIM$(S)
SEE ALSO
INSERT$()
INSTR()
LEFT$()
LEN()
LOWER$()
MID$()
RIGHT$()
RTRIM$()
STR$()
STRING$()
TRIM$()
UPPER$()