gpt4 book ai didi

PHP 正则表达式删除多个 ?-marks

转载 作者:可可西里 更新时间:2023-11-01 13:39:45 29 4
gpt4 key购买 nike

我无法想出正确的正则表达式字符串来删除多个 ?人物。我想按顺序更换多个?用一个 ?,但是要转义哪些字符...正在转义我。

示例输入:

Is this thing on??? or what???

期望的输出:

Is this thing on? or what?

我正在使用 preg_replace()在 PHP 中。

最佳答案

preg_replace('{\?+}', '?', 'Is this thing on??? or what???');

也就是说,你只需要转义问号,“\?+”中的加号意味着我们用一个或多个字符替换每个实例,但我怀疑“\?{2,}”可能是甚至更好、更高效(用两个或更多问号字符替换每个实例。

关于PHP 正则表达式删除多个 ?-marks,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/136642/

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