正则表达式允许在 preg_replace 中使用&符号

发布于 2024-11-29 14:34:09 字数 205 浏览 1 评论 0原文

我需要做什么来改变它以允许 $result 中使用 & 符号?

function replace($s){
    $result = preg_replace("/[^\p{Latin}0-9'-]+/u", "", html_entity_decode($s, ENT_QUOTES));
    return $result;
}

What do I need to do to alter this to allow ampersands in the $result?

function replace($s){
    $result = preg_replace("/[^\p{Latin}0-9'-]+/u", "", html_entity_decode($s, ENT_QUOTES));
    return $result;
}

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

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

发布评论

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

评论(1

小鸟爱天空丶 2024-12-06 14:34:09

只需将 & 添加到模式中的排除项即可。

$result = preg_replace("/[^\p{Latin}0-9&'-]+/u", "", html_entity_decode($s, ENT_QUOTES));

(请注意:- 应保留在末尾,否则它可能会被解释为描述一系列字符,例如 0-9

Just add & to the exclusion in the pattern.

$result = preg_replace("/[^\p{Latin}0-9&'-]+/u", "", html_entity_decode($s, ENT_QUOTES));

(Be careful: the - should stay at the end, otherwise it might be interpreted as describing a range of characters, like 0-9)

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