正则表达式:删除方案,除非它是 http(s)。 (捕获负回顾模式)

发布于 2024-10-29 05:07:03 字数 241 浏览 1 评论 0原文

我这里正则表达式停电了。如何再次捕获负面回顾模式?

我正在尝试删除 uri 的方案(包括 ://),除非它是 http/https。我已经完成了一半(或者我以为我是,下面的模式甚至无法编译),但我忘记了如何实际捕获负模式:

preg_replace( '~^(?

我该如何再次执行此操作?

I'm having a regex blackout here. How do I capture a negative lookbehind pattern again?

I'm trying to remove the scheme (including ://) of a uri unless it is http/https. I'm half way there (or I thought I was, the pattern below doesn't even compile), but I forgot how to actually capture the negative pattern:

preg_replace( '~^(?<!https?)://~', '', $uri );

How can I do this, again?

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

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

发布评论

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

评论(2

假面具 2024-11-05 05:07:04
preg_replace('#^((?:.(?<!http))+://)#i', '', $uri);
preg_replace('#^((?:.(?<!http))+://)#i', '', $uri);
白日梦 2024-11-05 05:07:03

只是一个快速的想法:

preg_replace ('#^((http[s]{0,1}://)|([a-z]+://))#i', '$2', $uri);

Just a quick thought:

preg_replace ('#^((http[s]{0,1}://)|([a-z]+://))#i', '$2', $uri);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文