lTrim
Returns its string
argument without any leading white space.
Example
lTrim(" Hello Cleveland")
This example returns the string
“Hello Cleveland”.
Syntax
lTrim(string str)
Description
lTrim
searches for any white space preceding non-white space characters in its string
argument. It removes the preceding white space characters and returns the result.