Regular Expressions 101

Community Patterns

Matches All the even numbers

1

Regular Expression
PCRE2 (PHP >=7.3)

/
\b(?:\d+)?[24680]\b
/
gm

Description

Matches all the even numbers from a given input.

Submitted by Dashrath Sharma - 7 months ago