Shouldn't be using <font> tags anyway (or bgcolor attributes) - they went out last century. Consider using stylesheets instead, and then you can name the items with something more meaningful that you can also use to search the HTML code for.
Instead of
<FONT FACE="arial">1, 2, 3, 4 Br. Rentals Rent To Own Contract for Deed Below Market Below Market Properties Call Today! 952-921-8490</FONT>
It would be
<span class="advert">1, 2, 3, 4 Br. Rentals Rent To Own Contract for Deed Below Market Below Market Properties Call Today! 952-921-8490</span>
The stylesheet would contain a declaration
.advert
{
font-family:arial,helvetica,sans-serif; // Not everyone has Arial!
}
And the code to search for ads would be
#<span class="advert">(.*?)</span>#
You can (and should) go further and style the <td> elements themselves. Since there appear to be at least two different colours it would appear to make sense to use extra classes and mix them.
.advert
{
font-family:arial, helvetica, sans-serif;
}
.advertrow1
{
color: black;
background-color:white;
}
.advertrow2
{
color:black;
background-color:#dfe4ee;
}
The styles would be applied to the <td> elements
<td class="advert advertrow1">1, 2, 3, 4 Br. Rentals Rent To Own Contract for Deed Below Market Below Market Properties Call Today! 952-921-8490</td>
and the expression would read
#<td class="advert advertrow.">(.*?)</td>#