php:正则表达式删除字符串中的括号

发布于 2024-09-05 17:29:12 字数 321 浏览 7 评论 0原文

与此示例类似, php:从字符串中删除括号/内容? 我不知道替换

$str = '(ABC)some text'

$str = 'ABC';

当前使用的 $str = preg_replace('/(.)/','',$str); 但不起作用。如何解决这个问题?

similiar like this example, php: remove brackets/contents from a string? i have no idea to replace

$str = '(ABC)some text'

into

$str = 'ABC';

currently use $str = preg_replace('/(.)/','',$str); but not works. how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

太阳男子 2024-09-12 17:29:12

我将使用 preg_match 而不是 preg_replace:

preg_match('#\(([^)]+)\)#', $str, $m);
echo $m[1];

Instead of preg_replace, I would use preg_match:

preg_match('#\(([^)]+)\)#', $str, $m);
echo $m[1];
作业与我同在 2024-09-12 17:29:12

如果要使用替换,可以使用以下内容:

 $str = "(ABC)some text";
 $str = preg_replace("/^.*\(([^)]*)\).*$/", '$1', $str);

该模式将匹配整个字符串,并将其替换为括号内找到的任何内容

If you want to use replace, you could use the following:

 $str = "(ABC)some text";
 $str = preg_replace("/^.*\(([^)]*)\).*$/", '$1', $str);

The pattern will match the whole string, and replace it with whatever it found inside the parenthesis

枕头说它不想醒 2024-09-12 17:29:12

我会在这里完全避免使用正则表达式。相反,您可以使用普通的字符串函数,如下所示:
$str = str_replace(array('(',')'),array(),$str);

I'd avoid using regex altogether here. Instead, you could use normal string functions like this:
$str = str_replace(array('(',')'),array(),$str);

美男兮 2024-09-12 17:29:12

试试这个:

$str = preg_replace('/\((.*?)\).*/','\\1',$str);

Try this:

$str = preg_replace('/\((.*?)\).*/','\\1',$str);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文