Regular Expressions 101

Community Patterns

Find all numerics, either integer or float (engineering not supported).

0

Regular Expression
PCRE (PHP <7.3)

/
\d\d*[.]?\d*\d
/
gm

Description

Find all numerics, either integer or float (engineering not supported).

Submitted by anonymous - 4 years ago (Last modified 3 years ago)