当前位置: 代码迷 >> PHP >> 简单正则
  详细解决方案

简单正则

热度:146   发布时间:2012-03-30 17:32:09.0
求一个简单正则
请把<span class="cnt">&#x200e;(105)</span>
的105给提取出来,谢谢。

------解决方案--------------------
$str='<span class="cnt">&#x200e;(105)</span>';
preg_match('/\(.*\)/',$str,$match);
你看这样行不行
------解决方案--------------------
PHP code

$str='<span class="cnt">&#x200e;(105)</span>';
preg_match('/\(([\d]+)\)/', $str,$foo);

echo $foo[1]; 
  相关解决方案