常用HTML正则
Posted 风清扬
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用HTML正则相关的知识,希望对你有一定的参考价值。
<?php //html a连接正则 $str = ‘‘; $isMatched = preg_match(‘/<a.*?[^<]>.*?<\/a>/‘, $str, $matches); var_dump($isMatched, $matches); //HTML js正则 $str = ‘‘; $isMatched = preg_match(‘/<script[\s\S]*?<\/script>/‘, $str, $matches); var_dump($isMatched, $matches); //HTML img正则 $str = ‘‘; $isMatched = preg_match(‘/<img[^>]*>/‘, $str, $matches); var_dump($isMatched, $matches);
以上是关于常用HTML正则的主要内容,如果未能解决你的问题,请参考以下文章