Split Variable

Split Variable

Splits the value of the variable to the some variables like array items.

Description
Optionally, you may add comments here describing the purpose of this element.
Initial text
The initial text to will be processed. It can be empty, in this case, the current value of the variable 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 the result string + index will be written to. You will get [varname]1 - the first item, [varname]2 - the second item etc. [varname]count - count of the items.

Variable nameDescription
[var]1 The first item.
[var]2 The second item.
[var]i The i-th item.
[var]count The count of the items.

Example, the initial text is "This is a string", the delimiter is SP and the variable is myvar then

#myvar1# - This 
#myvar2# - is 
#myvar3# - a 
#myvar4# - string
#myvarcount# - 4