Regular Expressions 101

Community Patterns

<INEQUALITY>||<30 Integer capture more than 30

0

Regular Expression
PCRE (PHP <7.3)

/
([3-9]\d|[1-9]\d{2,})
/
gm

Description

in this example i have captured integers more than a specified number chosen

Submitted by anonymous - 5 years ago