LTrim$ Function

Syntax              LTrim[$](S$)

Group                String

Description       Return the string with S$'s leading spaces removed.

Parameter         Description

S$                       Copy this string without the leading spaces. If this value is Null then Null is returned. 

See Also            RTrim$( ), Trim$( ).

Example            '#Language "WWB-COM"
Sub Main
    Debug.Print "."; LTrim$("  x  "); "." '".x  ."
End Sub