ResultVariable
When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.
See also: Related Actions
String.TrimLeft
OverviewExamples
string String.TrimLeft ( string SourceString,
string CharactersToTrim = nil )
De s cr ip t ion
Trims specific characters from the left hand side of a source string. Each character in CharactersToTrim will be removed from the left hand side of the SourceString until no characters match.
Note: You can also use this action to remove beginning newlines, space, and tab characters from the string by passing nil as the CharactersToTrim parameter.
P arame t er s
SourceString
(string) The source string you want to trim.