我需要在asp.net网站上的文本字段使用正则表达式

应该在两者之间

0000至9999

不是

0至9999

最佳答案

我认为这可能是:

^\d{4}$

如果您使用的是C#,请不要忘记对其进行转义
string numReg = @"^\d{4}$";

10-05 23:45