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  "