I want to enter only digits in a textbox with the following condition
- maximum 3 digits
- maximum from 0 to 250..so 251 should not be accepted.
I have written the following code till now..how to take the other conditions too
this.value.match(/[^0-9]/g)
|
|
|
|
|
|
|
You don't need regex for that.
|
||||||||||
|
|
|
Regex is complete overkill for this. You can use javascript to validate this on the client side. If you happen to be doing this in ASP.NET, you can use the Range Validator control to ensure that the user only enters integers from 0 to 250 (or whichever min and max values you want). |
||
|
|
|
|
If you really want a regex (though, as mentioned, other options are probably more appropriate), here is one that will match 0-250:
Breaking this down, we use the
Or
The first part matches 0 (or 00 or 000) through 199. The second part uses a similar scheme to match 200 through 249 or 250. |
||
|
|
|
|
will give you 1 to 3 digits, but a regex is probably the wrong way to go about it as you will need to your bounds checking after the regex anyway. It would probably be better to use something like
|
||
|
|
|
try this
|
||
|
|
|
|
|
||
|
|