Regular Expressions 101

Community Patterns

Numeric

0

Regular Expression
PCRE2 (PHP >=7.3)

/
^-?[0-9][0-9,\.]+$
/
gm

Description

test for numeric values with digit and thousand separators (, and ,) and also negative sign (-)

Submitted by anonymous - 2 years ago