正则表达式链接到页面锚点

发布于 2024-11-17 19:31:31 字数 735 浏览 1 评论 0原文

我想使用正则表达式将链接转换为页面锚点。我对正则表达式完全陌生,我尝试过学习。

我使用了 php 字符串替换为 # 的根 url,但需要使用 preg_replace 将 / 更改为 - 但当 / 是 html 标记(例如 )的一部分时则不需要>>

$string = '<ul>
<li><a href="http://www.somedomain.com/something/somethingelse">Hello World</a></li>
<li><a href="http://www.somedomain.com/something/somethingelse">Hello World</a></li>
</ul>';

// Replace root url with #
$string = str_replace('http://www.somedomain.com/', '#' , $string);

// This replaces the / with hyphens, but I need it to not do this if is preceeded or followed by < or >
$string = preg_replace("/\//", "-", $string);
echo $string;

I would like to use a regular expression to convert links to on page anchors. I am totally new to regex, I have tried learning.

I have used a php string replace to the root url with # but need to use preg_replace to change the / to - but not when / is part of a html tag such as </ or />.

$string = '<ul>
<li><a href="http://www.somedomain.com/something/somethingelse">Hello World</a></li>
<li><a href="http://www.somedomain.com/something/somethingelse">Hello World</a></li>
</ul>';

// Replace root url with #
$string = str_replace('http://www.somedomain.com/', '#' , $string);

// This replaces the / with hyphens, but I need it to not do this if is preceeded or followed by < or >
$string = preg_replace("/\//", "-", $string);
echo $string;

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

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

发布评论

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

评论(1

才能让你更想念 2024-11-24 19:31:31

有点:

preg_replace('/([^<]|^)\/([^>]|$)/', '$1-$2', $string);

但是整个任务看起来不像是解决原始任务的可靠方法。

Kind of:

preg_replace('/([^<]|^)\/([^>]|$)/', '$1-$2', $string);

But the entire task does not look like a reliable way of solving the original task.

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