Looping through items in a field separated by an enter

I have one field that returns multiple items underneath one another. For example:
Word 1
Word 2
Word 3

How do I loop through each item since there is no comma coming from the source?

Hi @Laurens_Kruger ,

Does your input look like this?

In that case, we could use an iterator:

to get this output:

2 Likes

Yes thank you, I was thinking through an iterator as well, I was not sure how to identify it via the split.

Thank you