Regular Expressions 101

Community Patterns

Match anything under $15.99

1

Regular Expression
PCRE2 (PHP >=7.3)

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

Description

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

Submitted by https://square.to - 2 years ago