admin管理员组文章数量:1344205
It should not allow leading zeroes, like 099
. Allowed values should be like these: 35
, 99
, 1
, 2
, 3
, 100
.
This is What I tried:
$('#createCoupon_discountAmount').bind('input propertychange', function () {
$(this).val($(this).val().replace(/(\d\d?|100)\Z/g, ''));
});
It should not allow leading zeroes, like 099
. Allowed values should be like these: 35
, 99
, 1
, 2
, 3
, 100
.
This is What I tried:
$('#createCoupon_discountAmount').bind('input propertychange', function () {
$(this).val($(this).val().replace(/(\d\d?|100)\Z/g, ''));
});
Share
Improve this question
edited Aug 31, 2016 at 9:40
n4m31ess_c0d3r
3,1485 gold badges28 silver badges35 bronze badges
asked Aug 31, 2016 at 9:06
KishoreKishore
511 gold badge1 silver badge3 bronze badges
4
- @RoryMcCrossan : its not working .. it accepts leading zero. – Kishore Commented Aug 31, 2016 at 9:11
- ^[1-9][0-9]?$|^100$ this would be a valid regex for your problem. just specify what you would like to allow for the first number. – Florin M Commented Aug 31, 2016 at 9:22
- Just a note that regex is not really the most suitable tool for this task. – JJJ Commented Aug 31, 2016 at 9:31
- for percentage a text box should allow only digit from 0 to 100. maxLength is 3. – Kishore Commented Aug 31, 2016 at 9:44
4 Answers
Reset to default 3The regex that I would use for this is the following, but I'm not sure if it an optimal one:
^([0-9]|([1-9][0-9])|100)$
We create three groups and we always match from the beginning of the string to the end. The first group we capture is [0-9]
to get the first 10 numbers (0-9). The second group we capture those numbers twice, to get all numbers from 10 -> 99. And finally we just match 100 as well.
This version is shorter and possibly more efficient /^([1-9]?\d|100)$/
If you want to remove leading zeros, try removing them from the beginning position using ^0+
i.e. match string starting with one or more zeros.
$(this).val().replace(/^0+/g, '')
Just multiply the value by 1 and it will give you a perfect number
本文标签: javascriptRegex for number between 0 to 100Stack Overflow
版权声明:本文标题:javascript - Regex for number between 0 to 100? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743716190a2526778.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论