新手求教,复杂的正表达式,求高手指点
"第\s?1-60\s?个\s?共有很多个"
怎么匹配出 1 60 很多
匹配了很久了,就是出不来,求高手指点
------解决方案--------------------
$str = "第\s?1-60\s?个\s?共有很多个";
$b = html_entity_decode($str);
preg_match_all("/\d+
------解决方案--------------------
很多/", $b, $match);
var_dump($match);









