str_用连字符替换 A 标签名称属性中的空格

发布于 2024-08-08 18:58:17 字数 315 浏览 2 评论 0原文

$string = preg_replace("#[name=([a-zA-Z0-9 .-]+)*]#",''."$1",$string);

脚本部分不起作用:

str_replace(' ', '-', "$1")

我需要将“ ”替换为“-”, 我还在主 preg_replace 内尝试 preg_replacestr_ireplace

但这仍然不起作用

$string = preg_replace("#[name=([a-zA-Z0-9 .-]+)*]#",''."$1",$string);

This part of script doesn't work:

str_replace(' ', '-', "$1")

I need to replace " " with "-",
i also try preg_replace inside main preg_replace, str_ireplace also

But this is still don't working

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

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

发布评论

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

评论(2

我不是你的备胎 2024-08-15 18:58:17

更换是预先评估的,而不是在每次更换时评估。但是您可以通过使用 e 正则表达式中的修饰符

$string = preg_replace("#\[name=([a-zA-Z0-9 .-]+)*]#e", '"<td><a href=\"$front_page/".str_replace(" ", "-", "$1")."\">$1</a></td>"', $string);

或者使用 preg_replace_callback

function callbackFunction($match) {
    global $front_page;
    return '<td><a href="'.$front_page.'/'.str_replace(" ", "-", $match[1]).'">'.$match[1].'</a></td>';
}
$string = preg_replace_callback("#\[name=([a-zA-Z0-9 .-]+)*]#", 'callbackFunction', $string);

The replacement is evaluated upfront and not on each replace. But you can do so by either using the e modifier in your regular expression:

$string = preg_replace("#\[name=([a-zA-Z0-9 .-]+)*]#e", '"<td><a href=\"$front_page/".str_replace(" ", "-", "$1")."\">$1</a></td>"', $string);

Or by using preg_replace_callback:

function callbackFunction($match) {
    global $front_page;
    return '<td><a href="'.$front_page.'/'.str_replace(" ", "-", $match[1]).'">'.$match[1].'</a></td>';
}
$string = preg_replace_callback("#\[name=([a-zA-Z0-9 .-]+)*]#", 'callbackFunction', $string);
何其悲哀 2024-08-15 18:58:17

我想您必须分两步完成,因为 $1 不能在 str_replace() 中使用。 $1 并不真正作为变量存在,它只是替换字符串中的占位符。

I guess you will have to do it in two steps, since $1 cannot be used in str_replace(). $1 doesn’t really exist as a variable, it is only a placeholder in the replacement string.

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