gpt4 book ai didi

php - 正则表达式问题替换

转载 作者:行者123 更新时间:2023-12-04 15:32:34 25 4
gpt4 key购买 nike

我正在尝试使用 Regex 删除 ( )( ) 中的任何内容。

例如,字符串:3 Series (11,879)

替换为:3 系列

我尝试过的:

preg_replace("/(\w+)/","","3 Series  (11,879)");

输出只是:(,)

最佳答案

您可以使用:

echo preg_replace('/\h*\([^)]*\)/', "", "3 Series  (11,879)");
//=> 3 Series

即转义 () 并使用 [^)]* 匹配它们之间的所有内容。

关于php - 正则表达式问题替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33549727/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com