Regular Expressions 101

Community Patterns

Signed numbers with optional decimal part (comma or dot)

1

Regular Expression
PCRE2 (PHP >=7.3)

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

Description

Signed numbers with optional decimal part (comma or dot)

Submitted by ImAlbi57 - 3 years ago