in reply to
[regex] matching Perl quoted strings
Instead of the .*? which will take up more processing, you could use negated characters
e.g.
/(\[[^]]*\] | {[^}]*} | \([^)]*\) | <[^>]*>)/
Comment on
Re: [regex] matching Perl quoted strings
Download
Code
In Section
Seekers of Perl Wisdom