我想在typeScript代码中验证2009-2059之间的验证器模式中的数字。我尝试了很多方法,但找不到办法吗?你能看一下示例代码并告诉我如何修复它吗?
此致 Alper
您可以在下面看到示例代码。
],'Input3': [this.guiTranformatorInput.JJJJ_input3,[
Validators.required,
Validators.pattern('20[0-5][8-9]'),
]
答案 0 :(得分:2)
你的范围模式错了,试试这个
20((09)|([1-5][0-9]))
20: start with 20
(
09: literal 09
or
1-5 and 0-9
)
或使用自定义验证程序:https://stackoverflow.com/a/39848327/3676586