Split

Splits input strings by specified separator.

Input/Output

Number of Connections: Min: 1/Max:2
InputData TypeDescription
Input1StringString
Input2StringSets the Separator property. (optional)

OutputData TypeDescription
Output1StringSplitted strings

Property

NameProperty TypeDescription
Separatorstring Specifies a separator
You can use the following meta character by a separtor.
Meta CharacterControl Character
\tTAB
\rCR
\nLF
CountintSpecifies output count
SearchDirchoice Specifies the direction to split.
Left - From left.
Right - From right.
SeparatorModechoice Specifies option of separator.
None - Don't include a separator in output.
Left - Include a separator with left part splitted.
Right - Include a separator with right part splitted.

Output count and Separator

When the number of part splitted by a separator is less than the number of output, empty string is output.
When the number of part splitted by a separator is more than the number of output, all strings are included in the last output in the case of searching from left. When the number of part splitted by a separator is more than the number of output, all strings are included in the first output in the case of searching from right.

Example

Property
Inputabc_def_ghiSeparator_Output1abc
Count2Output2def_ghi
SearchDirLeft
SeparatorModeNone

Property
Inputaa,bb,cc,ddSeparator,Output1aa,
Count4Output2bb,
SearchDirRightOutput3cc,
SeparatorModeLeftOutput4dd