我怎样才能得到括号中所有单词的数组?
$text = 'lorem (try) (table) lorem (try1)';
preg_match('/\((.+)\)/', $text, $coincidencias);
echo $coincidencias;
感谢。
答案 0 :(得分:0)
使用preg_match_all()
代替preg_match()
并使用正则表达式中的nongreedy修饰符?
仅匹配到下一个结束)
$text = 'lorem (try) (table) lorem (try1)';
preg_match_all('/\((.+?)\)/', $text, $coincidencias);
var_dump( $coincidencias);