求一个简单正则
请把(105)
的105给提取出来,谢谢。
------解决方案--------------------
$str='(105)';
preg_match('/\(.*\)/',$str,$match);
你看这样行不行
------解决方案--------------------
$str='<span class="cnt">(105)</span>'; preg_match('/\(([\d]+)\)/', $str,$foo); echo $foo[1]; <div class="clear"> </div>