我有这个表达:

The Exorcist's [Restored Version] (xvid110-sickboy88)


并想要这样的输出:

The Exorcist's Restored Version xvid110 sickboy88


请事先帮助谢谢。

最佳答案

无需正则表达式。 str_replace()将完成工作。如果其第一个参数是数组,而第二个参数是字符串,则第一个数组的所有元素将被第二个字符串参数替换。

$input = "The Exorcist's [Restored Version] (xvid110-sickboy88)";
$str = str_replace(array("[", "]", "(", ")"), "", $input);
echo $str;

// The Exorcist's Restored Version xvid110-sickboy88

关于php - 如何使用preg_split()删除方括号?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9741164/

10-13 01:39