PHP - 删除字符串中的所有内容()

时间:2017-09-20 08:06:41

标签: php string

我想删除字符串中的所有内容()。例如,如果我的字符串是$string = "this is an example string (this is the part i want to remove)";

我用str_replace尝试了它,但自然它只是替换了#34;("而不是里面的内容。我怎么能这样做,因为我事先不知道内容?

2 个答案:

答案 0 :(得分:0)

这可能有效

preg_replace('/[^a-zA-Z0-9_ %\[\]\.\(\)%&-]/s', '', $String);

答案 1 :(得分:0)

$string = "this is an example string (this is the part i want to remove)";
$string2=preg_replace("/\([^)]+\)/","",$string);

试试这个