1: 2: 3: 4: 5: 6: 7:
<span class="body"> <font face="Times New Roman" size="4"> ☻</font></span><font face="Times New Roman">Perl is<br> very<br> beautiful<br> </font>
1: 2: 3:
my ($match) = ($html =~ m{<font[^>]*(?!size="\d+")[^>]*>(.*?)</font>}ms); $match =~ s{(<br>|\n)+}{ }g; print $match, "\n";