in reply to Matching escaped quoted strings

Untested, but this is a straightforward problem:
sub find_quote { local $_ = shift; s/("([^"]+|"")*")/<$1>/g; $_; }

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.