使用正则表达式在括号之间捕获字符串

时间:2019-06-24 19:39:26

标签: php regex parentheses

我有一个包含多个括号的字符串: 像这样:

(This) (is a (test)) string, (Testing) should be (done (here)).

我已经尝试过一些在网上找到的正则表达式。但是由于我对正则表达式不太熟悉。需要帮助。

我已经尝试过了:

$text = '(This) (is a (test)) string, (Testing) should be (done (here)).';
preg_match_all("/\([^\)]*\)/", $text, $matches);

您可以看一下: https://regex101.com/r/8QCwOP/1

我想要这样的结果

  1. 这个
  2. 是(测试)
  3. 测试
  4. 完成(此处)

0 个答案:

没有答案