Regular Expressions 101

Community Patterns

numbers between 100 & 99999 with optional decimal numbers, upto 2 decimal places

0

Regular Expression
ECMAScript (JavaScript)

/
^[1-9]\d{2,4}(?:\.\d{1,2})?$
/
gm

Description

no description available

Submitted by anonymous - 4 years ago