Help for this page
my $font_tag_match = m{ # Tags in pairs like <foo>content</foo> ... # remove all text that is not between a pair of <font> tags.. $input_data =~ s/^$font_tag_match//mg;
# Under Construction