LTrim
The LTrim function removes spaces on the left side of a string.
Syntax :
LTrim(string)
| Parameters | Description |
|---|---|
| string | Required. A string expression. |
Example :
s = LTrim(" Test ")
Result :
s="Test " The LTrim function removes spaces on the left side of a string.
LTrim(string)
| Parameters | Description |
|---|---|
| string | Required. A string expression. |
s = LTrim(" Test ")
Result :
s="Test "