preg_match将单词转换为文本括号

时间:2013-10-09 11:48:59

标签: php

我怎样才能得到括号中所有单词的数组?

$text = 'lorem (try) (table) lorem (try1)'; 
preg_match('/\((.+)\)/', $text, $coincidencias);
echo $coincidencias;

感谢。

1 个答案:

答案 0 :(得分:0)

使用preg_match_all()代替preg_match()并使用正则表达式中的nongreedy修饰符?仅匹配到下一个结束)

$text = 'lorem (try) (table) lorem (try1)';
preg_match_all('/\((.+?)\)/', $text, $coincidencias);
var_dump( $coincidencias);