Returns a copy of the input string without the leading space characters.
Syntax: |
---|
value = TrimLeftSpaces( inputString )OR value = LTrim(inputString ) ' Short form usage: "LTrim". |
Parameter: |
Description: |
---|---|
inputString |
String expression that needs the spaces on the left to be trimmed. |
value |
Same string expression minus the leading Space characters. |
Example: |
---|
value = TrimLeftSpaces( " Hello " ) ' Returns "Hello "
Results:See example comments. |
Links: |
---|
See Also: |
Edit Time: 9/18/2020 1:58:40 PM |
Topic ID#: 35 |