Function Name |
SplitString | ||||
Category |
String | ||||
Icon |
![]() |
||||
Description |
SplitString is used to break a delimited string into substrings. | ||||
Inputs |
|
||||
Outputs |
|
||||
Properties |
|
Splits a string into the maximum number of substrings delimited by the characters specified in the Separators property. Empty values can be ignored by setting the appropriate property.
Input String = "A,B,C,,D,E"
Separator = ','
Ignore Empty = false
Result
A |
B |
C |
D |
E |
Input String = "A,B,C,,D,E"
Separator = ','
Ignore Empty = true
Result
A |
B |
C |
D |
E |
In this example the input String is a sequence of strings. The result is the combination of all the split parts from each input value.
Input Strings
A,B,C,,D,E |
1,2,3 |
X |
Ignore Empty = false
Result
A |
B |
C |
D |
E |
1 |
2 |
3 |
X |