首页  >  文章  >  后端开发  >  如上,小弟我是想要结果为 12abc34

如上,小弟我是想要结果为 12abc34

WBOY
WBOY原创
2016-06-13 13:44:06711浏览

如上,我是想要结果为 12abc34
$string = "some text (12abc34) more text";  
if(preg_match("/[(][.][)]/",$string,$matches)){  
  echo $matches;  
}  
?> 
如上,我是想要结果为 12abc34

------解决方案--------------------
$string = "some text (12abc34) more text";
preg_match('/\(([a-z0-9]+)\)/', $string, $matches);
echo $matches[1];
------解决方案--------------------
$string = "some text (12abc34) more text";
$preg = "/\d+.*\d+/";
preg_match($preg, $string, $matches);
var_dump($matches);
试试这个

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn