Split String Loop
Amaster's String Library
The Split String Loop node takes in a string list that is separated by a separator, and splits them up, one value at a time per iteration. This node also has the option to include any trailing string value from the last known separator in the list.
Inputs
* (Call)
Calls to start the loop.
String (String)
The string list to iterate through.
Separator (String)
The separator to split the string.
IncludeTrailingString (bool)
If true, the last string value will be included as the last iteration past the final separator.
Outputs
LoopStart (Continuation)
Fires when the loop starts.
LoopInteration (Continuation)
Fires when the loop iterates.
LoopEnd (Continuation)
Fires when the loop ends.
Iteration (int)
The iteration number.
Value (String)
The string value in this current iteration.