Using Regexp::Common you should do this quite easily.
#!/usr/bin/perl -w use strict; use Regexp::Common; my $text = <<TEXT; onValidate { stuff in here { other stuff } } keep this { remove this {and {this}} } TEXT $text =~ s/$RE{balanced}{-parens=>'{}'}//g; print $text;
It will print:
onValidate keep this
Update [1] If you'd rather do this without a module, you can try this regular expression:
(I am not a RegEx guru. I got it by just printing $RE{balanced}{-parens=>'{}'} and adjusting it a bit.)our $re = qr/(?:\{(?:(?>[^\{\}]+)|(??{$re}))*\})/;
Update [2] And to explain how all this works, here goes:
use YAPE::Regex::Explain; print YAPE::Regex::Explain->new($re)->explain;
The regular expression: (?-imsx:(?:\{(?:(?>[^\{\}]+)|(??{$re}))*\})) matches as follows: NODE EXPLANATION ---------------------------------------------------------------------- (?-imsx: group, but do not capture (case-sensitive) (with ^ and $ matching normally) (with . not matching \n) (matching whitespace and # normally): ---------------------------------------------------------------------- (?: group, but do not capture: ---------------------------------------------------------------------- \{ '{' ---------------------------------------------------------------------- (?: group, but do not capture (0 or more times (matching the most amount possible)): ---------------------------------------------------------------------- (?> match (and do not backtrack afterwards): ---------------------------------------------------------------------- [^\{\}]+ any character except: '\{', '\}' (1 or more times (matching the most amount possible)) ---------------------------------------------------------------------- ) end of look-ahead ---------------------------------------------------------------------- | OR ---------------------------------------------------------------------- (??{$re}) run this block of Perl code (that isn't interpolated until RIGHT NOW) ---------------------------------------------------------------------- )* end of grouping ---------------------------------------------------------------------- \} '}' ---------------------------------------------------------------------- ) end of grouping ---------------------------------------------------------------------- ) end of grouping ----------------------------------------------------------------------
In reply to Re: pattern matching nested { }'s
by Caron
in thread pattern matching nested { }'s
by Gerard
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |