Javascript URL 正则表达式问题

发布于 2024-11-19 17:21:58 字数 287 浏览 0 评论 0原文

我使用这个正则表达式来表示 URL:

var re = /^(http[s]?:\/\/){0,1}(www\.){0,1}[a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,5}[\.]{0,1}/;

但是,它似乎只匹配单独的 URL。如果您将 URL 添加到已键入的消息中,它将不会匹配:

Test message: www.google.com

不会匹配。无论 URL 中包含什么内容,如何使其与 URL 匹配?

I use this regex for URL's:

var re = /^(http[s]?:\/\/){0,1}(www\.){0,1}[a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,5}[\.]{0,1}/;

However, it seems to only be matching URL's that are alone. If you add a URL to an already typed message, it won't match:

Test message: www.google.com

Won't match. How do I make it match URL's no matter what's included with them?

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

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

发布评论

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

评论(2

凉宸 2024-11-26 17:21:58

这是因为表达式开头的 ^ 字符意味着“匹配字符串的开头”(换句话说,您拥有的是 starts-with 搜索)。删除它,它将匹配测试字符串中的任何位置。

var re = /(http[s]?:\/\/){0,1}(www\.){0,1}[a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,5}[\.]{0,1}/;

It's because the ^ character at the beginning of the expression means "match the beginning of the string" (in other words, what you have is a starts-with search). Remove that and it will match anywhere in the test string.

var re = /(http[s]?:\/\/){0,1}(www\.){0,1}[a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,5}[\.]{0,1}/;
半山落雨半山空 2024-11-26 17:21:58

这只是因为您使用了插入符号 (^)。这意味着“仅匹配输入的开头”。删除它,你应该得到你想要的。

That's simply because you're using the caret symbol (^). That means "only match the start of input." Remove that and you should get what you want.

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