Do you know where your variables are? | |
PerlMonks |
perlfaq6: Can I use Perl regular expressions to match balanced text?by brian_d_foy (Abbot) |
on Jan 03, 2008 at 20:39 UTC ( [id://660316]=perlmeditation: print w/replies, xml ) | Need Help?? |
I've rewritten "Can I use Perl regular expressions to match balanced text?" in perlfaq6 for Perl 5.10, which has new, nifty regex features that make the answer "yes, and it's easy". You may not look at the perlfaq that much anymore, so here's the new answer for you to enjoy. :) I expect that there are many more perlfaq answers which can use some Perl 5.10 features. If you find one, let us know at perlfaq-workers@perl.org. You can supply a patch or just point out the answer. Your first try should probably be the Text::Balanced module, which is in the Perl standard library since Perl 5.8. It has a variety of functions to deal with tricky text. The Regexp::Common module can also help by providing canned patterns you can use. As of Perl 5.10, you can match balanced text with regular expressions using recursive patterns. Before Perl 5.10, you had to resort to various tricks such as using Perl code in (??{}) sequences. Here's an example using a recursive regular expression. The goal is to capture all of the text within angle brackets, including the text in nested angle brackets. This sample text has two "major" groups: a group with one level of nesting and a group with two levels of nesting. There are five total groups in angle brackets:
The regular expression to match the balanced text uses two new (to Perl 5.10) regular expression features. These are covered in perlre and this example is a modified version of one in that documentation. First, adding the new possesive + to any quantifier finds the longest match and does not backtrack. That's important since you want to handle any angle brackets through the recursion, not backtracking. The group [^<>]++ finds one or more non-angle brackets without backtracking. Second, the new (?PARNO) refers to the sub-pattern in the particular capture buffer given by PARNO. In the following regex, the first capture buffer finds (and remembers) the balanced text, and you need that same pattern within the first buffer to get past the nested text. That's the recursive part. The (?1) uses the pattern in the outer capture buffer as an independent part of the regex. Putting it all together, you have:
The output shows that Perl found the two major groups:
With a little extra work, you can get the all of the groups in angle brackets even if they are in other angle brackets too. Each time you get a balanced match, remove its outer delimiter (that's the one you just matched so don't match it again) and add it to a queue of strings to process. Keep doing that until you get no matches:
The output shows all of the groups. The outermost matches show up first and the nested matches so up later:
Back to
Meditations
|
|