我有一个包含多个括号的字符串: 像这样:
(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
我想要这样的结果