LTrim$ Function

Returns a string equal to specified string without leading spaces.

Syntax
LTrim$ (string)

Parameters

string
Specify a string expression.

Return Values
Specified string with leading spaces removed.

See Also
RTrim$, Trim$

LTrim$ Function Example

str$ = "  data  "
str$ = LTrim$(str$)  ' str$ = "data  "