Convert a delimited string to an iterable object and perform actions for each value
Summary:
How can I iterate through values in a delimited string using a "For Each" action in OIC when createnodesetfromdelimitedstring
isn't working as expected?
Content (please ensure you mask any confidential information):
I'm encountering an issue in OIC where I need to process individual values from a delimited string using a "For Each" action. My goal is to parse a string like "value1,value2,value3" and then perform operations on "value1", "value2", and "value3" separately within a loop. The delimiter character could also be ";" , " " or "/"
I've attempted to use the createnodesetfromdelimitedstring
function in a data mapping to a Write File Action to convert the delimited string into a node set, which I then intended to use as the input for a "For Each" action. However, this approach hasn't been successful, and the "For Each" action isn't iterating as expected over the individual values.