首頁  >  文章  >  後端開發  >  正则表达式匹配时,怎么去掉引号

正则表达式匹配时,怎么去掉引号

WBOY
WBOY原創
2016-06-13 12:58:242079瀏覽

正则表达式匹配时,如何去掉引号
我在php中运行如下程序
$str = ' 正则表达式匹配时,怎么去掉引号 ';
$soImages = '/\'(.*?)\'/';
preg_match_all( $soImages, $str, $thePics );
$allPics = count($thePics[0]);
if( $allPics > 0 ){
echo $thePics[0][0];
}
?>

返回的结果为'http://xxx/xxx.jpg'
我希望返回结果直接是http://xxx/xxx.jpg
请问如何让正则匹配返回不带单引号的结果?
------解决方案--------------------
echo $thePics[1][0];

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn