Convert a String containing commas as separators into an Array

I have a string of text “01pdf1,01sb1”.

The comma in the text is a separator between two elements: “01pdf1” and “01sb1”.

I want to conduct a series of operations for each element. In order to do this, I think I should use the iterator module.

In order to use the iterator, I need to convert this original text string into an array so that it can deal with each element separately.

Is there any way to do this? I can see ways of converting down to a string, but I can’t figure out how to convert up to an array.

(I’m not very code savvy…Make.com for Dummies is sort of my preferred communication level :slight_smile: )

Thanks in advance.

use the split function.
example
{{split("01pdf1,01sb1"; ",")}}

image
image

1 Like

Perfect!! Thanks very, very much.

1 Like

Sure glad i could help.

1 Like