检测链接是否是内部链接并相应地缩短它

发布于 2024-11-10 11:05:17 字数 391 浏览 7 评论 0原文

我一直在考虑制作一种缩短内部链接的辅助方法。例如: 如果我的网站是 example.com 并且用户发布了指向 http://www.example.com/posts 的链接/80 最好将链接文本缩短为 post#80 和 http://www .example.com/comments/5 到评论#5。

这足够

url["http://www.example.com/posts/"] = "post#"

或者我应该使用正则表达式来代替吗?

I have been thinking about making a helper method that shortens internal links. For example:
if my website is example.com and a user posts a link to http://www.example.com/posts/80 it would be nice to shorten the link text to post#80 and http://www.example.com/comments/5 to comment#5.

would this suffice

url["http://www.example.com/posts/"] = "post#"

Or should I use a regex for this instead?

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

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

发布评论

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

评论(1

清风夜微凉 2024-11-17 11:05:17

正则表达式!

SITE_URL = 'http://www.example.com'    # make sure there is no trailing slash /

url = "http://www.example.com/posts/80"

short_url = url.sub( %r{^#{SITE_URL}(.*)$} , '\1')
  => "/posts/80" 

regexp!

SITE_URL = 'http://www.example.com'    # make sure there is no trailing slash /

url = "http://www.example.com/posts/80"

short_url = url.sub( %r{^#{SITE_URL}(.*)$} , '\1')
  => "/posts/80" 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文