String Splitter

String SplitterThis node splits a text string into text fragments which can be accessed by their index.

The String Splitter splits a single Input string into multiple parts and iterates over them. The Count property provides the number of items generated by the split. The item at the index specified by the Current property is provided as an output string in Item. The Items property provides all parts as a String Array.

The split is performed at every occurrence of the string specified in Custom. If Lines or Tabs are checked, additional splits will be performed at the end of each line or at each tab respectively.