admin管理员组文章数量:1344448
I'm somewhat new to regular expressions and am writing validation for a quantity field where regular expressions need to be used.
How can I match all numbers less than or equal to 24?
I tried
var pat = /^[1-9]$|^[1-2]\d$|^3[0-6]$/;
But that only matches 1-24. Is there a simple way to match all possible numbers less than or equal to 24?
I'm somewhat new to regular expressions and am writing validation for a quantity field where regular expressions need to be used.
How can I match all numbers less than or equal to 24?
I tried
var pat = /^[1-9]$|^[1-2]\d$|^3[0-6]$/;
But that only matches 1-24. Is there a simple way to match all possible numbers less than or equal to 24?
Share Improve this question edited Jan 13, 2016 at 5:20 Tushar 87.3k21 gold badges163 silver badges181 bronze badges asked Jan 13, 2016 at 4:43 Gobinath MGobinath M 2,0316 gold badges29 silver badges47 bronze badges 6- 2 Do yo want to match negative numbers too? – Tushar Commented Jan 13, 2016 at 4:49
-
is the quantity field not numeric? function
Number
might help. – Jorg Commented Jan 13, 2016 at 4:51 - Your regex actually matches 1-36 . . . but anyway, you need to describe your rules much more precisely than just "all numbers less than or equal to 24", since that really sounds like it should mean 1-24 . . . – ruakh Commented Jan 13, 2016 at 4:52
- 2 Agree. Are arbitrarily big negative numbers supposed to pass this regex expression? Say, -1, -24, and -5060000. – mech Commented Jan 13, 2016 at 4:54
- 2 Can't use just check if the value is <= 24 and >= 1 ? – chris85 Commented Jan 13, 2016 at 5:03
2 Answers
Reset to default 7I won't remend you to use regex just to check if a number is between the range. To pare the numbers parison operators should be used.
if (number >= 0 && number <= 24)
However, if this is not feasible/possible, you can use regex.
You can also use
^(2[0-4]|[01]?[0-9])$
Regex101 Demo
Explanation:
^
: Start of line anchor2[0-4]
: Matches2
followed by any number between 0 to 4 - Matches 20-24|
: OR condition in regex[01]?[0-9]
:[01]?
: Matches 0 or 1 optionally.[0-9]
: Matches any number exactly once in the range 0 to 9 - Matches 0-19
Demo
input:valid {
color: green;
}
input:invalid {
color: red;
}
<input pattern="(2[0-4]|[01]?[0-9])" />
You can use following regex
^(2[0-4])|(^[01]?[0-9])$
Regex101 Demo
^(?:[0-9]|[1][0-9]|2[0-4])$
Try this.See demo.
https://regex101./r/iJ7bT6/3
版权声明:本文标题:javascript - Regular Expression - How can I match all numbers less than or equal to Twenty Four? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743786502a2538782.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论