Built-in Functions → lTrim

lTrim() is a string function that searches for any white space preceding non-white space characters in its string argument and returns the result without any leading white space characters.

Signature

lTrim(string value)

Returns

string

Example

Remove the leading white spaces in " Hello Cleveland".

lTrim(" Hello Cleveland")

This example returns "Hello Cleveland".