本文介绍了PHP:Preg 替换括号?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
preg_replace
只是 PHP 中的括号的正确语法是什么?
What is the proper syntax to preg_replace
just the parenthesis in PHP?
$search = preg_replace('/\(\)/','',$search);
谢谢
推荐答案
假设您想从 $search
中删除 (
和 )
> 字符串:
Assuming you want to remove both (
and )
from the $search
string:
$search = preg_replace('/\(|\)/','',$search);
我认为最快的方法是使用 strtr
函数,如下所示:
$search = strtr($search, array('(' => '', ')' => ''));
这篇关于PHP:Preg 替换括号?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!