Split & For statementThis commands splits initial text to array of items and execute a body with the each item of the array. This command can contain other commands that will be executed on the each step. Description Optionally, you may add comments here describing the purpose of this element.
Initial text The initial text to will be processed.
#myvariable#
Delimiter The delimiter for splitting. NL - the delimiter is the new line, SP - the delimiter is a space.
, - the delimiter is comma
@
Variable name The name of the variable which has the value of the current item on the each iteration. For example, if you specify myvar here then you can use #myvar# or myvar inside inner commands. The variable myvari contains the current number of the iteration.
myvar
|