Description:
Returns a copy of a string without leading spaces (
left trim).
In the PROMOTIC system it is better to use the Pm.StringOper method.
Syntax:
String LTrim(String string)
Parameters:
string | (String) Text string |
---|
Note:
By this method only "space" chars are removed. Characters, like "new line", "tab", etc., are not removed by this.
Example:
VBScriptSelect and copy to clipboard
Dim s
s = LTrim(" Promotic ")
' Returns "Promotic "