检测链接是否是内部链接并相应地缩短它
我一直在考虑制作一种缩短内部链接的辅助方法。例如: 如果我的网站是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正则表达式!
regexp!