Splits a delimited property value into two values, pulling a single value off from the beginning or end of the delimited list with the remaining value in a second property. This activity can be used within a loop to process one value at a time from a delimited list:
Inputs
- delimitedList - Delimited list of values to be split.
- splitEnd - Specifies whether value is removed from beginning (first) or end (last) of delimited list.
- delimiter - Identifies the delimiter to be used to separate the values in the delimited list.
Outputs
- singleValue - Single value pulled from the delimited list. Empty if list is empty.
- remainingList - Remaining delimited list after pulling off one value. Empty if no values remain.
- isListEmpty - Set to true if the delimited list is empty, otherwise false