Simple regular expression for a decimal with a precision of 2

后端 未结 17 2031
闹比i
闹比i 2020-11-22 02:02

What is the regular expression for a decimal with a precision of 2?

Valid examples:

123.12
2
56754
92929292929292.12
0.21
3.1
17条回答
  •  隐瞒了意图╮
    2020-11-22 02:43

    adding my answer too, someone might find it useful or may be correct mine too.

    function getInteger(int){
      var regx = /^[-+]?[\d.]+$/g;
      return regx.test(int);
    }
    
    
    alert(getInteger('-11.11'));
    

提交回复
热议问题