如果我有这样"location":"Denton TX"
的字符串(包括双引号),我只想得到Denton TX
. 我怎样才能为那个东西写正则表达式?
我试过了
function getInfo($info,$content){
echo 'getting INFO';
preg_match_all("\.".$info."\.:\"[^\"]*(.*?)\.,",$content,$matches,PREG_PATTERN_ORDER);
print_r($matches);
return $matches[0];
}
我把“位置”放进去$info
,但它不起作用。