Good morning
I'm trying to get a table row (TR) that must have one or more table cells (TDs):
Having this string
<TABLE>
<TR valign="top">
<TH>First</TH>
<TH>2nd</TH>
<TH>3rd</TH>
<TH>4th</TH>
</TR>
<TR valign="top">
<TD width="15%">Michael Jackson</TD>
<TD width="5%">Cramberries</TD>
<TD width="25%">Pixies</TD>
<TD width="45%">The Ramones</TD>
</TR>
</TABLE>
I would like to get:
<TR valign="top">
<TD width="15%">Michael Jackson</TD>
<TD width="5%">Cramberries</TD>
<TD width="25%">Pixies</TD>
<TD width="45%">The Ramones</TD>
</TR>
what would be the best pattern for extracting one or more TRs with nested TDs?