Hi Guys,
Is it possible to format a string consisting of numbers and pass them as individual values in a collection variable in a workflow?
My string format :
1
2
3
4
5
Thanks!
Solved! Go to Solution.
Do I understand correctly that you want to take a string and split the values into a collection variable. Then you will probably use that collection in a ForEach or something.
I use the Regular Expression action to take a string like 1,2,3,4 and then save those values to a collection variable. See my screen shot of the Run Now feature testing the RegExp. The Pattern is a comma and using the split operation.
Thank you Andrew!