PHP 正则表达式 preg_match 显示异常行为
模式如下:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
错误出在第一部分。当您使用方括号时,您会匹配其中的一个字符,因此
[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.