PHP Reverse Preg_match [英] PHP Reverse Preg_match

查看:201
本文介绍了PHP Reverse Preg_match的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

if(preg_match("/" . $filter . "/i", $node)) {
    echo $node;
}

此代码过滤变量以决定是否显示变量。 $ filter的示例条目是office或164(。*)976。

This code filters a variable to decide whether to display it or not. An example entry for $filter would be "office" or "164(.*)976".

我想知道是否有一种简单的说法:如果$ filter与$ node不匹配。以正则表达式的形式?

I would like to know whether there is a simple way to say: if $filter does not match in $node. In the form of a regular expression?

所以......不是if(!preg_match,而是更多$ filter =!office或!164 (。*)976但是有效吗?

So... not an "if(!preg_match" but more of a $filter = "!office" or "!164(.*)976" but one that works?

推荐答案

如果你肯定想要使用负正则表达式,这可以做到而不是简单地反转正面正则表达式的结果:

This can be done if you definitely want to use a "negative regex" instead of simply inverting the result of the positive regex:

if(preg_match("/^(?:(?!" . $filter . ").)*$/i", $node)) {
    echo $node;
}

将匹配一个字符串,如果它不包含 $ filter 中的正则表达式/子字符串。

will match a string if it doesn't contain the regex/substring in $filter.

说明:(以 office 作为示例字符串)

Explanation: (taking office as our example string)

^          # Anchor the match at the start of the string
(?:        # Try to match the following:
 (?!       # (unless it's possible to match
  office   # the text "office" at this point)
 )         # (end of negative lookahead),
 .         # Any character
)*         # zero or more times
$          # until the end of the string

这篇关于PHP Reverse Preg_match的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆