匹配html格式的正则!
程序员文章站
2022-03-04 15:11:45
...
求一个匹配html格式的正则!!
请问可以用正则匹配出来这样一段HTML代码吗?我不会写正则,去网上看了点基础教程,匹配出来的结果只有
匹配不到(里面的li是不定数量的,可以能是2个,也会是更多~)。求高手帮忙写下正则!
------解决方案--------------------
preg_match_all('/
preg_match_all('/.*?/s', $str, $matches);
var_dump($matches);
- 1
- 2
请问可以用正则匹配出来这样一段HTML代码吗?我不会写正则,去网上看了点基础教程,匹配出来的结果只有
------解决方案--------------------
$str = 'afdasdfdsa
- 1
- 2
- 3
- 4
preg_match_all('/
- ]*>.*/isU', $str, $matches);
print_r($matches[0]);
?>
------解决方案--------------------
$str = '
- 1
- 2
- 3
- 4
- 5
- 6
preg_match_all('/
var_dump($matches);
相关文章
相关视频
下一篇: php session不能保存怎么办