标签: regex angular
我尝试使用此指令,但我无法设置两位小数的正则表达式
如何设置正则表达式,以允许数字为例 34.21 | 32.4 | 32 | 67. | 77。
答案 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*