Here I make a regex manually from Regex elements of an array.
my Regex @reg =
/ foo /,
/ bar /,
/ baz /,
/ pun /
;
my $r0 = @reg[0];
my $r1 = @reg[1];
my Regex $r = / 0 $r0 | 1 $r1 /;
"0foo_1barz" ~~ m:g/<$r>/;
say $/; # (「0foo」 「1bar」)
How to do it with for @reg {...}?