PHP 正则表达式 preg_match 显示异常行为

发布于 2024-12-03 14:56:44 字数 432 浏览 0 评论 0原文

模式如下:

$urlpattern = '%[^http://][^https://][\w]+(-[\w]+)*(\.[\w]+(-[\w]+)*)*\.[\w]{1,6}(\.[\w]{1,6})*[^/]%';

我遇到了一个令我困惑的奇怪错误。

当我搜索像 'power-tool-world.com' 这样的字符串时,它会显示它并返回 'ower-tool-world.com' (删除 p)但是当我使用任何其他字母(未对所有其他字母进行测试)时,它工作正常,因此 'cower-tool-world.com' 返回 'cower-tool-world.com'有人可以帮我理解为什么,但更多重要的是给我一个不会导致这个问题的解决方案?

Here is the pattern:

$urlpattern = '%[^http://][^https://][\w]+(-[\w]+)*(\.[\w]+(-[\w]+)*)*\.[\w]{1,6}(\.[\w]{1,6})*[^/]%';

I have encountered a strange bug that boggles me.

When I search against a string like 'power-tool-world.com' it gimps it and returns 'ower-tool-world.com' (removes the p) but when I use any other letter(not tested on EVERY other letter) it works fine, so 'cower-tool-world.com' returns 'cower-tool-world.com' can someone please help me understand why, but more importantly give me a solution that wouldn't cause this problem?

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

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

发布评论

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

评论(1

染墨丶若流云 2024-12-10 14:56:44

错误出在第一部分。当您使用方括号时,您会匹配其中的一个字符,因此 [http://] 匹配 h、t、p、: 和 /,并且这些字符将从下一个匹配组中排除。您应该使用 ^(http://|https://)? 代替。

The error is in the first part. When you use square brackets you match one of the characters inside them so [http://] matches h, t, p, : and /, and these characters will be excluded from the next matching group. You should use ^(http://|https://)? instead.

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