简体   繁体   中英

Regular expression to enforce 2 digits after decimal point

I need to validate a numeric string with JavaScript, to ensure the number has exactly two decimal places.

The validation will pass only if

  1. the number has precisely two decimal places
  2. there is at least one digit before the decimal point. (could be zero)
  3. the number before the decimal point can not begin with more than one zero.

Valid numbers:

0.01
0.12
111.23
1234.56
012345.67
123.00
0.00

Invalid numbers:

.12
1.1
0.0
00.00
1234.
1234.567
1234
00123.45
abcd.12
12a4.56
1234.5A

I have tried the regular expression [0-9][\\.][0-9][0-9]$ , but it allows letters before decimal point like 12a4.56 .

. matches any character, it does not do what you think it does. You have to escape it. Also, you have two more errors; try

^[0-9]+\.[0-9][0-9]$

instead, or even better, use \\d for decimal digits:

^\d+\.\d\d$

This covers all requirements :

^(0|0?[1-9]\d*)\.\d\d$
  • the number has precisely two decimal places
    • Trivially satisfied due to the non-optional \\.\\d\\d$

The other two conditions can be restated as follows:

  • The number before the decimal points is either a zero
  • or a number with exactly one zero, then a number that does not start with zero

This is covered in these two cases:

  • 0
  • 0?[1-9]\\d*

You don't need regular expressions for this.

JavaScript has a function toFixed() that will do what you need.

var fixedtotwodecimals = floatvalue.toFixed(2);
var values='0.12';

document.write(values.match(/\d+[.]+\d+\d/));

change value as you want and check it

i used this

^[1-9][1-9]*[.]?[1-9]{0,2}$

  • 0 not accept

  • 123.12 accept but 123.123 not accept

  • 1 accept

  • 12213123 accept

  • sdfsf not accept

  • 15.12 accept

  • 15@12 not accept

  • 15&12 not accept

这里是:

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

Try This Code

pattern="[0-9]*(\.?[0-9]{1,2}$)?"
  • 1 Valid

  • 1.1 Valid

  • 1.12 Valid

  • 1.123 not Valid

  • only number Valid

    pattern="[0-9]*(.?[0-9]{2}$)?"

  • 1 Valid

  • 1.1 not Valid

  • 1.12 Valid

  • 1.123 not Valid

  • only number Valid

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM