Pessoal tenho que tratar o seguinte código html
<table>
<tr>
<td> //codigo
</td>
</tr>
<tr>
<td height="10">&nbsp; </td>
</tr>
</table>
Tenho que retirar com expressao regular o trecho:
<tr>
<td height="10">&nbsp; </td>
</tr>
O que identifica esse trecho é o height=“10” que o identifica como único.
Como posso fazer uma expressão regular com repaceAll para tratar isso.