LeftTrim

LeftTrim

%LeftTrim function


Old name

%LTrim

Function

The function removes trailing spaces or other characters from the beginning of the specified text string.

Declaration

TEXT %LeftTrim( TEXT in string TEXT in charToRemove := " " )

Parameters

string

Text string.

charToRemove

A character that will be removed from the start of the string (optional parameter).

Example

%LeftTrim(" Text Some Text ") ; returns the value of "Text Some Text " %LeftTrim("..Text Some Text....") ; returns the value of "Text Some Text...."