Community Patterns

Community Library Entry

0

Regular Expression
Created·2020-09-19 05:55
Flavor·PCRE (Legacy)

/
^[-]?[0-9](\.[0-9]+)?$
/
gm
Open regex in editor

Description

By using this regex, we can check roundup values which is used in billing. Valid results are:

  1. -0.15
  2. 1.11
  3. 9.99

In Valid results are:

  1. All Values > 9.99
  2. All Values < -9.99
Submitted by anonymous