0

这是我目前的代码:

$title = preg_replace('/\bReactionDB\b/i',' ', $title_matches[1]);

输入文本 = “它开始了!| ReactionDB”

除了“ReactionDB”,我希望它替换字符“|” 没有/空白。

我已经搜索了几个小时,但没有找到解决方案,有人知道该怎么做吗?

4

1 回答 1

0

再次致电preg_replace

$title = preg_replace('/\bReactionDB\b/i',' ', $title_matches[1]);
$title = preg_replace('/\|/', '', $title);

请注意,您需要转义|,因为它是一个特殊字符。

于 2013-04-24T15:48:02.163 回答