Regular Expressions 101

Community Patterns

There does not seem to be anything here

Community Library Entry

1

Regular Expression
PCRE2 (PHP >=7.3)

/
(?<![\.\d])[\d,]*[02468](?(?!\.)|\.[0]*$)
/
gm

Description

Detects even numbers in any string:

ex. Hello, I'm 18 years old. ex. 17.02 (not detected)

Submitted by anonymous - 17 days ago