作者:浪漫满屋19860902692 | 来源:互联网 | 2014-03-27 14:26
求一个匹配html格式的正则!!<ul id="ul1"> <li>1</li> <li>2</li></ul>请问可以用正则匹配出来这样一段HTML代码吗?我不会写正
求一个匹配html格式的正则!!
请问可以用正则匹配出来这样一段HTML代码吗?我不会写正则,去网上看了点基础教程,匹配出来的结果只有
里面的
匹配不到(里面的li是不定数量的,可以能是2个,也会是更多~)。求高手帮忙写下正则!
------解决方案--------------------
$str = 'afdasdfdsa
asdfasdfasdfdsgsdfg';
preg_match_all('/]*>.*<\/ul>/isU', $str, $matches);
print_r($matches[0]);
?>
------解决方案--------------------
$str = '
';
preg_match_all('/.*?<\/ul>/s', $str, $matches);
var_dump($matches);