Lua SwxWare v13.10
The helper function removes all space characters from the left from a given string.
local sLeft = StringLTrim(str)
This function returns a string value.
Example:
local sLeft = StringLTrim(" Erika Mustermann ") PBXScript.OutputTrace("#" .. sLeft .. "#") --> #Erika Mustermann #
By Tom Wellige