Syntax:
LTrim[$](S$)
Group:
String
Description: Returns the string with S$'s leading spaces removed.
Parameters:
Parameter
|
Description
|
S$
|
Copy this string without the leading spaces. If this value is Null then Null is returned.
|
Example:
Sub Main
Debug.Print ".";LTrim$(" x ");"." '".x ."
EndSub