解决方法
我不认为闰年支持在正则表达式中是可行的而不使用一些丑陋的正则表达式.
在使用正则表达式验证输入后,您必须检查日期有效性.
正如Keeper所暗示,您可以使用DateTime.ParseExact方法来验证您的日期:
Public Function IsValidDate(ByVal dateString As String) As Boolean Try DateTime.ParseExact(dateString,"dd/MM/yy",System.Globalization.CultureInfo.InvariantCulture) Return True Catch ex As FormatException Return False End Try End Function