LTrim$

Result = LTrim$ ( String )

Strips white spaces from the left of a string. A white space is any character whose ASCII code is stricly lower than 32.


Examples

PRINT "<"; LTrim$(" Gambas"); ">"

<Gambas>


PRINT "<"; LTrim$(" Gambas  "); ">"

<Gambas  >


See also

LTrim$ | Left$ | Lower$ / LCase$ | Mid$ | RTrim$ | Replace$ | Right$ | Space$ | Split | String$ | Subst$ | Trim$ | Upper$ / UCase$