gpt4 book ai didi

php - 从字符串中删除特定模式

转载 作者:行者123 更新时间:2023-12-04 15:31:48 26 4
gpt4 key购买 nike

我有一个示例字符串“欢迎来到我的主页 (23) | Ayman”。我需要从此字符串中删除 (23)。请注意,23 仅用作示例,在此位置可以有任何值。

我试过这段代码:

$str = preg_replace("\(d)/", " ", $str);

但是,它没有按预期工作。

最佳答案

尝试代码:

$str =  "welcome to my home page (23) | Ayman";
echo preg_replace("/\(\d+\)/", "", $str);

关于php - 从字符串中删除特定模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22323874/

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