用于 url 验证的 Javascript 和 PHP 正则表达式

发布于 2025-01-01 06:27:32 字数 502 浏览 0 评论 0原文

可能的重复:
URL 验证正则表达式(JavaScript 中)

所以我看到了许多类似的问题和答案,但找不到适合我的特定需求的解决方案。

我对正则表达式很糟糕,并且正在努力为以下 url 验证获得一个简单的正则表达式。

domain.com
domain.com/folder
subdomain.domain.com
subdomain.domain.com/folder

还可以验证可选的 http:// 和 http://www。会非常有帮助的。谢谢!

Possible Duplicate:
Regular expression for URL validation (in JavaScript)

So I've seen many similar questions and answers but can't find a solution that fits my specific needs.

I'm terrible at Regex's and am struggling to get a simple Regex for the following url validation.

domain.com
domain.com/folder
subdomain.domain.com
subdomain.domain.com/folder

also to validate for optional http:// and http://www. would be super helpful. Thanks!

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

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

发布评论

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

评论(1

感性不性感 2025-01-08 06:27:32

据我所知,

/[a-z]+:\/\/(([a-z0-9][a-z0-9-]+\.)*[a-z][a-z]+|(0x[0-9A-F]+)|[0-9.]+)\/.*/

请注意,您的问题并未将 URL 限制为一组协议、TLD 或字符集。

skype://18005551212gopher://localhost 之类的内容是有效的 URL。哎呀,根据您使用的浏览方式,以下可能都是访问同一服务器的有效方法(尽管虚拟主机不完全相同):

它们都在 Firefox 中为我工作。

如果您需要进一步的限制,请确定它们是什么。你愿意牺牲有效的协议吗?您真的只对一两个协议感兴趣吗?

更具体的问题将为您带来更具体的答案。

As near as I can get would be:

/[a-z]+:\/\/(([a-z0-9][a-z0-9-]+\.)*[a-z][a-z]+|(0x[0-9A-F]+)|[0-9.]+)\/.*/

Note that your question hasn't limited URLs to a set of protocols, TLDs or character sets.

Something like skype://18005551212 or gopher://localhost is a valid URL. Heck, depending on what you're using to browse, the following might all be valid ways to get to the same server (though not quite the same virtualhost):

They all work for me in Firefox.

If you want further restrictions, determine WHAT they are. Are you willing to sacrifice valid protocols? Are you really only interested in one or two protocols?

A more specific question will get you a more specific answer.

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