Hi,
Please help.
I have a lot of bundle in output like this:
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.
Hi,
Please help.
I have a lot of bundle in output like this:
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.
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.
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 -
This will give you the first bundle of the array.
Let me know if this helps