Regular Expressions 101

Community Patterns

0

rs-reg

PCRE (PHP <7.3)
personal patterns
Submitted by anonymous - 4 years ago

decimal nr between 0-99999.99 with comma or dot with max. 2 decimal digits

1

Regular Expression
ECMAScript (JavaScript)

/
^([0-9]{1,5})(([,.]{1})([0-9]{1,2}))?$
/

Description

Loading markdown...
Submitted by anonymous - 7 years ago