Truncate Split String Iterator
Iterate over a string by groups of a certain number of characters.
NOTE
This block is an iterator. Learn more about iterators.
Inputs
String
The string to split.
Example: 1234567890
Split After
Number of characters in each group. Final group will have fewer characters if the string length is not divisible by this number.
Example: 4
Outputs
Iteration Number
The number of the current iteration.
Example: 0, 1, 2…
Total Iterations
The total amount of iterations the block will do.
Example: 3
Split String
The portion of the string
Example: 1234, 5678, 90
Is Last Iteration
Example: false, false, true