Was this helpful?
ltrim ( var );
There are three forms of trim functions: trim, ltrim, and rtrim. The ltrim built-in function returns the value of var with leading spaces removed.
Example
split(name, part, ", ");
for (n in part)
part[n] = ltrim(part[n]); #trim leading spaces in name parts
Last modified date: 02/09/2024