Text Parser a lot of Output Bundle, want each separate

Hi,

Please help.
I have a lot of bundle in output like this:
Screenshot_10

and I want to put each budle in google sheets

I read here but only find how to put all together with aggregat, but I want to put all separate.
Thanks.

I try to do It by Iterator

image

But I got new lines with all reapeted

I want to have

Every match from a regex find module with “global match” will output a bundle. To “combine” them into a single structure, you’ll need to use an aggregator of some sort.

Aggregators are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the Array aggregator module.

1 Like

Hi, thanks for replay.
If i will aggregate to one single bundle I will have all text in one column.
I want to have all bundle separate in each coluumn.

I try to change bundle to array then paste to google sheets but dont work for me please help.

Hey There @Adrian_Grabski ,
You can use an aggregator and then use the get() function on the generated array and then map your desired bundles to the columns in your sheet .
Example -
Screenshot 2024-01-06 120750
This will give you the first bundle of the array.
Let me know if this helps

1 Like