首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

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

2012-03-23 
如上,我是想要结果为 12abc34?php$string some text (12abc34) more textif(preg_match(/[(][.][)]

如上,我是想要结果为 12abc34
<?php  
$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);
试试这个

热点排行