I've always been using Regex to check for user's input validity, ie checking for a correct mail adress, serial number, etc...
Now I want to check that the user input is, let's say, a number contained between : 78 and 143.
We're not quite analysing the user's input, but interpreting it and analysing after...
Would the Regex still be useful ? Would it be a good practice to use Regexs in that case ?
What would be the best way to control that kind of input ?
Thanks for your advices!