Simple regular expression for a decimal with a precision of 2

后端 未结 17 2046
闹比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:40

     function DecimalNumberValidation() {
            var amounttext = ;
                if (!(/^[-+]?\d*\.?\d*$/.test(document.getElementById('txtRemittanceNumber').value))){
                alert('Please enter only numbers into amount textbox.')
                }
                else
                {
                alert('Right Number');
                }
        }
    

    function will validate any decimal number weather number has decimal places or not, it will say "Right Number" other wise "Please enter only numbers into amount textbox." alert message will come up.

    Thanks... :)

提交回复
热议问题