Dear all,

I have the following html code:

<td valign="top" headers="col1">
 <font size="2">
  Center Bank
  <br />
  Los Angeles, CA
 </font>
</td>

<td valign="top" headers="col1">
 <font size="2">
  Salisbury
Bank and Trust Company
  <font face="arial, helvetica" size="2" color="#0000000">
   <br />
   Lakeville, CT
  </font>
 </font>
</td>

How should I delete the 'font' tags while keeping the content inside?
Ideally I want to get:

<td valign="top" headers="col1">
  Center Bank
  <br />
  Los Angeles, CA
</td>

<td valign="top" headers="col1">
  Salisbury
Bank and Trust Company
   <br />
   Lakeville, CT
</td>

Thank you.

Jackie
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to