in reply to Matching escaped quoted strings
sub find_quote { local $_ = shift; s/("([^"]+|"")*")/<$1>/g; $_; } [download]
-- Randal L. Schwartz, Perl hacker Be sure to read my standard disclaimer if this is a reply.