Regular Expressions 101

Community Patterns

match lines that DO NOT include "IPEL"

0

Regular Expression
PCRE2 (PHP >=7.3)

/
^((?!.*IEPL)).*
/
gm

Description

As it's said in the title, use this to trim my proxy servers

Submitted by anonymous - 2 years ago