![]() |
|
Keep It Simple, Stupid | |
PerlMonks |
Extracting a parenthesized fragment from a stringby fce2 (Sexton) |
on Sep 11, 2009 at 10:32 UTC ( #794740=perlquestion: print w/replies, xml ) | Need Help?? |
fce2 has asked for the wisdom of the Perl Monks concerning the following question: Hi monks, I'm currently fixing a few bugs in Mail::IMAPClient that for whatever reason have gone unnoticed. One of these is that its fetch_hash() method can't handle a parenthesized value if contains parentheses. In other words, its not dealing with nested parentheses correctly. A typical server response to a FETCH command might look something like this:
fetch_hash() seeks to turn that into the following hash:
In other words, the parenthesized data consists of key/value pairs. The values are either simple strings (matched by \S+), quoted strings (matched by "[^"]*") or a parenthesized fragment, which may include parentheses itself. What's inside the parentheses is actually completely opaque as far as this method is concerned. The original code used \([\)]*\) to try and match it, which works great until there is a closing paren inside. My attempt matching/capturing the parenthesized fragment is based on mjd's regex to match balanced parentheses. Its actually part of a larger regex that matches the other stuff described above, but this doesn't work in isolation either so I don't think those things are affecting it:
Running a basic test program with -Mre=debug seems to suggest that this is doing something close to what I want, stopping when it gets to the correct closing paren. The only problem is that nothing gets captured, even though the description of (*ACCEPT) in perlre makes it sound like it should. So, what's wrong here? And is there an easier way to do this? Note that I'm restricted to Perl 5.6, which sucks as I'd really like to try the PARNO stuff that came with 5.10.
Cheers,
Back to
Seekers of Perl Wisdom
|
|