Truncate Split String List
Split a string into groups of a certain number of characters.
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
String 1
The first section of the split string, or blank if there is less than one section.
Example: 1234
String 2
The second section of the split string, or blank if there is less than two sections.
Example: 5678
String 3
The third section of the split string, or blank if there is less than three sections.
Example: 90
String 4
The fourth section of the split string, or blank if there is less than four sections.
Example:
String 5
The fifth section of the split string, or blank if there is less than five sections.
Example:
String 6
The sixth section of the split string, or blank if there is less than six sections.
Example:
String 7
The seventh section of the split string, or blank if there is less than seven sections.
Example:
String 8
The eighth section of the split string, or blank if there is less than eight sections.
Example:
String 9
The ninth section of the split string, or blank if there is less than nine sections.
Example:
String 10
The tenth section of the split string, or blank if there is less than ten sections.
Example:
String 11
The eleventh section of the split string, or blank if there is less than eleven sections.
Example:
String 12
The twelfth section of the split string, or blank if there is less than twelve sections.
Example:
String 13
The thirteenth section of the split string, or blank if there is less than thirteen sections.
Example:
String 14
The fourteenth section of the split string, or blank if there is less than fourteen sections.
Example:
String 15
The fifteenth section of the split string, or blank if there is less than fifteen sections.
Example:
String 16
The sixteenth section of the split string, or blank if there is less than sixteen sections.
Example:
String 17
The seventeenth section of the split string, or blank if there is less than seventeen sections.
Example:
String 18
The eighteenth section of the split string, or blank if there is less than eighteen sections.
Example:
String 19
The nineteenth section of the split string, or blank if there is less than nineteen sections.
Example:
String 20
The twentieth section of the split string, or blank if there is less than twenty sections.
Example: