M
M
MdaUZH2016-01-04 20:09:26
PHP
MdaUZH, 2016-01-04 20:09:26

Allow range of numbers by regex?

How can I allow a range of numbers to be entered by a regular expression?
For example, from 1 to 100 inclusive..
check:
if( var >= 1 and 100 <= var )...
not suitable, because the regular expression will go into the input field

<input type="text" pattern="RegEx" title="только от 1 до 100">

Tell me what it will look like?
[0-9][0-9][0]
Allows you to enter and 990
Thank you very much

Answer the question

In order to leave comments, you need to log in

5 answer(s)
M
MdaUZH, 2016-01-04
@MdaUZH

[1-9]{1}$|^[1-9]{1}[0-9]{1}$|^100

P
profesor08, 2016-01-04
@profesor08

What for? HTML5 has a special field for this.

<input type="number" min="1" max="100" value="1" step="1">

M
Max, 2016-01-04
@MaxDukov

[0-1][0-9][0-9]

A
Andrey, 2016-01-05
@svistiboshka

(100)|(0*\d{1,2})
https://jsfiddle.net/7wdmq6u5/

M
mamedovArtem, 2021-02-10
@mamedovArtem

^(?!0.*$)([0-9]{1,2})$

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question