1

我有数千个包含下表内容的 html 页面~

<table height="94" cellpadding="0" width="760" border="0" cellspacing="0">
..... 
</table>

我想删除这个表标签:~

<table height="94" cellpadding="0" width="760" border="0" cellspacing="0">

以及其中的内容。

我试过了:~

preg_replace("/<(\/?table height="/94/".*?)>/si","",$str);

但失败了,它只是删除了我所有的标签及其内容。

提前致谢

4

1 回答 1

0

尝试:

preg_replace('#<table height="94".*?>.*?</table>#si',"",$str);
于 2012-08-01T04:20:38.150 回答