javascript regex validate years in range

后端 未结 8 1107
猫巷女王i
猫巷女王i 2021-02-13 20:11

I have input field for year and I need a regex for validation it. I have such code: ^([12]\\d)?(\\d\\d)$. But I want allow to validate only years in certain range (

8条回答
  •  攒了一身酷
    2021-02-13 20:43

    RegExp does not seem to be the right tool here. If you have the year values already isolated surely a simple comparison would work :

    if (+yr >= 1990 && +yr <= 2010)
    

    The +yr converts the string to a number

提交回复
热议问题