- or download this
my $regex = qr /( # Start capture
\( # Start with '(',
...
)* # zero or more times
\) # Close capture
)/x; # Ending with ')'
- or download this
my $regex = qr /( # Start capture
\( # Start with '(',
...
)* # zero or more times
\) # Close capture
)/x; # Ending with ')'