我需要调整下面列出的正则表达式,以确保数据根据这种格式进行验证:
2013 年 1 月 23 日 10:25
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:MM/dd/yyyy HH:mm}")]
[RegularExpression("^(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)[0-9][0-9]$", ErrorMessage = "Invalid date")]
当前的正则表达式似乎没有考虑 HH 和 MM
你能给我一个打击吗?谢谢