gpt4 book ai didi

php - 去掉字符串末尾的破折号或任何特殊字符

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

我将字符串中的任何特殊字符转换为破折号,但字母数字除外:

return preg_replace("![^a-z0-9]+!i", "-", $str);

但是,在某些情况下,我有这个字符串:

$str = "Hello there chubby!";

这将导致:

Hello-there-chubby-

单词末尾的破折号让我想到了如何删除它的解决方案。

最佳答案

return trim(preg_replace("![^a-z0-9]+!i", "-", $str), '-');

将去除前导和尾随破折号。

关于php - 去掉字符串末尾的破折号或任何特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13603928/

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