我有数千个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);
但失败了,它只删除了我的所有代码及其内容。
提前致谢
答案 0 :(得分:0)
尝试:
preg_replace('#<table height="94".*?>.*?</table>#si',"",$str);