Filter data in array and join

i have a input like this > fruit_apple, monkey, fruit_mango, lion, zebra, fruit_grapes

i want to get all the value that start with fruit_

and then have a only single value apple, mango, grapes

now when i use text praser and match pattern with regex, i get in different bundle (example added below ) and unable to join in into apple, mango, grapes

Bundle 1 Collection
i 1
$1 apple

Bundle 2 Collection
i 2
$1 mango

Bundle 3 Collection
i 3
$1 grapes

Thank in advance

One way you can do it

1. Regex

2. Aggregate results

3. Convert to simple array

Output

Blueprint

blueprint.json (6.3 KB)