Help for this page
$data =~ m/(<[^>]+>)/; print $1, "\n"; # print the tag
$data =~ m/<([^>]+)>/; print $1, "\n"; # print the tag