preg_match 排除一个数字

发布于 2024-10-19 06:56:59 字数 180 浏览 1 评论 0原文

我有这个代码

preg_match("/\bHTTP(.)+ (\d{3})/", $string)

在最后一个模式中,我必须检查可以由任何数字组成的 3 位数字,但不应创建像 404401 这样的数字,如何我可以做吗?

I have this code

preg_match("/\bHTTP(.)+ (\d{3})/", $string)

In the last pattern I have to check for a 3 digit number that can be composed by any digit but should not create a number like 404 or 401, how can I do it?

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

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

发布评论

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

评论(3

醉城メ夜风 2024-10-26 06:56:59

您可以使用否定先行断言来确保匹配的字符串没有 404401,如下所示:

preg_match("/\bHTTP(.+) (?!404|401)(\d{3})/", $string)

圆形链接

You can use the negative lookahead assertion to ensure that the matched string does not have a 404 or a 401 as:

preg_match("/\bHTTP(.+) (?!404|401)(\d{3})/", $string)

Rubular Link

美男兮 2024-10-26 06:56:59

您想要排除的值越多,就会变得越复杂,但

preg_match("/\bHTTP(.+) ([0-35-9]\d{2}|4[1-9]\d|40[0235-9])/", $string)

会匹配任何不以 4 开头的三位数,

任何以 4 开头但不以 4 开头的三位数以 40 开头,

以 40 开头但不是 401 或 404 的任何三位数。

The more values you want to exclude, the more complicated this will get, but

preg_match("/\bHTTP(.+) ([0-35-9]\d{2}|4[1-9]\d|40[0235-9])/", $string)

will match any three digit number that doesn't start with 4,

or any three digit number that starts with 4 but doesn't start with 40,

or any three digit number that starts with 40 but isn't 401 or 404.

尘曦 2024-10-26 06:56:59

解释:

否定前瞻 ?! 查找与指定模式不匹配的文本。
正向前瞻寻找匹配但不返回的模式。

http://www.regular-expressions.info/lookaround.html

  • ? ! 与以下内容不匹配
    模式
  • 404|401 要么 404 要么 401,因此 | 用于替代

explanation:

A negative lookahead ?! looks for text that does not match the specified pattern.
A positive lookahead looks for a pattern to match but not to return.

http://www.regular-expressions.info/lookaround.html

  • ?! do not match the following
    pattern
  • 404|401 either 404 or 401, so the | is used for alternatives
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文