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 に答える