LTrim()
Syntax
Result$ = LTrim(String$ [, Character$])Description
Removes all the 'space' characters located in the front of a string. If the optional 'Character$' parameter is specified, it removes all the 'Character$' located in the front of a string. 'Character$' has to be a one character length string.Example:
Debug LTrim(" This is Art") ; Will display "This is Art" Debug LTrim("!!Hello Word", "!") ; Will display "Hello World"
Supported OS
All