php preg_将所有链接替换为#

发布于 2024-11-26 08:57:01 字数 381 浏览 0 评论 0原文

文本中的单词较多,有些是英文,有些是拉丁文,现在,如何使用preg_replace,打破所有带有#的链接?制作类似:

流到下一个 => 流向下一个? (仅在长文本中破坏了带有 # 的链接。

谢谢。

不适用于此。

$new = preg_replace('/<a(?:.*?)(href="#)(?:.*?)>(.*?)<\/a>/is', '$2', $old); 
// this will also broken other links...

there are more words in a text, some are english, some are latins, now, how to use preg_replace, broken all the links with #? make something like:

<a href="#next">flow to the next</a> => flow to the next ? (only broken the links with # in a long text.

Thanks.

not work for this.

$new = preg_replace('/<a(?:.*?)(href="#)(?:.*?)>(.*?)<\/a>/is', '$2', $old); 
// this will also broken other links...

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

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

发布评论

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

评论(1

时光倒影 2024-12-03 08:57:01
<?php
$old = '<a href="#next">flow to the next</a> ';
$new = preg_replace('/(<a href="\#.*?">)(.*?)<\/a>/is', '$2', $old); 
echo $new;

演示

<?php
$old = '<a href="#next">flow to the next</a> ';
$new = preg_replace('/(<a href="\#.*?">)(.*?)<\/a>/is', '$2', $old); 
echo $new;

demo

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