Código PHP:
$html = '<tr>
<td id="menu"><a href="">Hello world</a></td>
<td id="menu"><a href="">Another menu</a></td>
<td id="menu"><a href="">Another menu</a></td>
<td id="menu"><a href="">Another menu</a></td>
</tr>';
$pattern = "@<tr>([.\s\t\n\"\/]*)</tr>@im";
preg_match($pattern, $html, $match);
echo $match[1];
Ese es el ejemplo que estoy probando para patrones por si era cosa del contenido del otro documento pero con éste tampoco funciona.