in reply to Parsing HTML tags with regex

It's not really possible with a real regex. HTML is an arbitrarily nested grammar, which doesn't work very well with a "regular" expression. However, given than perl's regexen are of the scary, non regular kind, you could probably manage to do it. Like so..
/(.*)(?{HTML::TokeParser->new( $1 )}/