Regular Expressions 101

Community Patterns

Numeric

0

Regular Expression
PCRE (PHP <7.3)

/
^[0-9]*(?:[^0-9a-z][0-9]*)*$
/
gm

Description

Regex to get any numeric string

Submitted by anonymous - 2 years ago