对于angular指令,需要带有两位小数的正则表达式

时间:2018-03-16 06:10:09

标签: regex angular

我尝试使用此指令,但我无法设置两位小数的正则表达式

如何设置正则表达式,以允许数字为例 34.21 | 32.4 | 32 | 67. | 77。

1 个答案:

答案 0 :(得分:2)

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

测试用例:

1234   *matches*
12.23   *matches*
4343.2   *matches*
12123.   *matches*
.12   *does not match*
1.234   *does not match*