我想替換(
和)
之間的所有內容。它也適用於這個preg_replace()。全部刪除(和)
$return = preg_replace("/\([^)]+\)/", "", $return);
如果我$return
就像"Hello my name is Frank (nicer guy)"
字符串爲"Hello my name is Frank"
但在情況下的括號也是未來圓括號這是行不通的。例如:
之前:"Hello my name is Frank (nicer (guy) thank you)"
後
"Hello my name is Frank thank you)"
它停止後的第一個 「)」。它是否有可能刪除圓括號內的圓括號?