|

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


image

image

String.TrimRight

OverviewExamples

string String.TrimRight ( string SourceString,


string CharactersToTrim = nil )


De s cr ip t ion


Trims specific characters from the right hand side of a source string. Each character in CharactersToTrim will be removed from the right hand side of the SourceString until no characters match.


image

Note: You can also use this action to remove trailing 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.


|