Community ProtoFlux Library/AmasterAmaster/Strings/Parsing/Split String Loop: Difference between revisions
From Resonite Wiki
Created a page for the Split String Loop custom node. |
Fixed node visual. |
||
Line 3: | Line 3: | ||
{{#Invoke:ProtoFlux|GenerateUI | {{#Invoke:ProtoFlux|GenerateUI | ||
|Name=Split String Loop | |Name=Split String Loop | ||
|Category=Amaster's | |Category=Amaster's String Library | ||
|Inputs= | |Inputs= | ||
[ | [ |
Latest revision as of 09:35, 23 August 2024
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.