LTrim$ Function
Syntax
LTrim[$](S$)
Group
Description
Returns the string with S$'s leading spaces removed.
Parameters
| Parameters | Description |
|---|---|
| S$ | Copies this string without the leading spaces. If this value is Null, Null is returned. |
Example
Sub Main Debug.Print "."; LTrim$(" x "); "." '".x ." End Sub
See also