废话不多说,直接上代码如下:(挑选不包含regex这个字符串的行)

^(?!.*regex).*$

待匹配文本内容如下:

tool.chinaz.com|888
https://tool.chinaz.com/regexadc
http://15xxxxx5/xxxxx.html
http://15xxxxx5/xxxxx.html

匹配结果如下:

tool.chinaz.com|888
http://15xxxxx5/xxxxx.html
http://15xxxxx5/xxxxx.html

匹配结果符合预期,排除了含‘regex’字符串的行。