<body>
<h1>Текст!</h1>
<p><a href="#">текст ссылки</a></p>
<table>
<tr><td>Текст 1</td></tr>
<tr><td>Текст 2</td></tr>
</table>
</body>
tableи
a
$sourceStr = <<<EOD
<body>
<strong>Another text</strong>
<h1>Text!</h1>
<p><b>Bold text</b></p>
<p><a href="#">text link</a></p>
<table>
<tr><td>Text 1</td></tr>
<tr><td>Text 2</td></tr>
</table>
</body>
EOD;
$regExpWrapper = "#(?<=<)(?!td)(?!a)(?!tr)(?!th)(?!table)(?:.+?)>(.*?)(?:<)#si";
preg_match_all($regExpWrapper, $sourceStr, $matches);
print_r($matches);