Heim >Backend-Entwicklung >PHP-Tutorial >正则表达式 - 求php正则匹配table标签

正则表达式 - 求php正则匹配table标签

WBOY
WBOYOriginal
2016-06-06 20:11:491423Durchsuche

table里面所有的内容都不要过滤掉,包括标签和内容。

<code><table id="Table1" class="blacktab" bordercolor="Black" border="0" width="100%">

//内容

</table>
</code>

回复内容:

table里面所有的内容都不要过滤掉,包括标签和内容。

<code><table id="Table1" class="blacktab" bordercolor="Black" border="0" width="100%">

//内容

</table>
</code>

<code>preg_match("/<table>]*?>(.*?)/s",$html,$match);

print_r($match[1]);

                            
            <p class="answer fmt" data-id="1020000004944935">
                                    </p>
<pre class="brush:php;toolbar:false"><code><?php $s = file_get_contents('./table.html');
preg_match('/<table[^>]*>(.*)/is', $s, $arMatch);
var_export($arMatch);
?></code>

<code>preg_match('/<table.>(.*?)/s',$str,$match);</table.></code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn