gpt4 book ai didi

ASP.NET 日期正则表达式验证器 99/99/2012

转载 作者:行者123 更新时间:2023-12-02 14:13:31 24 4
gpt4 key购买 nike

我有以下正则表达式日期验证器,但它允许以下日期:

"99/99/2012"

只是不知道为什么,如果有人知道我如何更改正则表达式来检查上述内容

日期格式如下:06/05/2012 mm/dd/yyyy

正则表达式:

^(((0?[1-9]|1[012])/(0?[1-9]|1\d|2[0-8])|(0?[13456789]|1[012])/(29|30)|(0?[13578]|1[02])/31)/(19|[2-9]\d)\d{2}|0?2/29/((19|[2-9]\d)(0[48]|[2468][048]|[13579][26])|(([2468][048]|[3579][26])00)))$

最佳答案

我发现这些模式有很多过于复杂的地方。您的日期格式实际上非常简单。我认为您忽略了 28 天的月份和 31 天的月份之间的重叠,从而采取了错误的方法。

在我进一步解释之前,让我指出,除非您坚持使用正则表达式,否则有更好的方法来解析和验证日期。最好的选择是 DateTime.TryParseExact ,就是为此而设计的。如果您使用的是 WebForms,则只需输入 CompareValidatorOperator="DataTypeCheck"Type="Date"

现在我已经说了神奇的话,让我们来谈谈正则表达式模式。

改变你看待这个问题的方式。确实,并非所有月份都包含 31 天甚至 30 天,但有多少月份包含 28 天?

...全部! 因此,如果您想匹配 4 月和 5 月,则无需涵盖 4 月 1 日至 30 日,然后涵盖 5 月 1 日至 31 日。您可以编写一个模式来覆盖任一月的前 30 天,然后单独点击 5 月 31 日。结果类似于 [45]/([012]?[1-9]|[123]0)|5/31,长度是其他情况下的一半。

考虑这个模式,为清楚起见进行了扩展:

^(
( #First, we'll cover months and days for a normal year. Forget leap years
#for a second.
(
(?<month>0?[1-9]|1[012]) #First we account for up to 28 days,
/(?<day>[01]?[1-9]|10|2[0-8]) #which ALL months have.
)
|
(
(?<month>0?[13-9]|1[012]) #Every month but February has at
/(?<day>29|30) #least 30 days, so cover that.
)
|
(
(?<month>0?[13578]|1[02]) #Cover the 31st day for months
/(?<day>31) #that have one.
)
)

/(?<year>(1[89]|20)[0-9]{2}) #Any year between 1800 and 2099.

| #Normal years: Done. Now we just need to cover February 29,
#and only for leap years.

(?<month>0?2)
/(?<day>29)
/(?<year>
(1[89]|20) #Century doesn't matter, since 100 is divisible by 4.
(
[24680][048] #If the decade is even, leap years end in [048].
|
[13579][26] #If the decade is odd, leap years end in 2 or 6.
)
)
)$

我们就完成了。强制使用 mm/dd/yyyy 格式,验证现有日期,并且简短且易于阅读。这是缩小版本:

^(((0?[1-9]|1[012])/([01]?[1-9]|10|2[0-8])|(0?[13-9]|1[012])/(29|30)|(0?[13578]|1[02])/31)/(1[89]|20)[0-9]{2}|0?2/29/(1[89]|20)([24680][048]|[13579][26]))$
<小时/>

编辑:

由于这是 .NET,因此您可以使用环视来大大缩短它:

 ^(
(?!(0?[2469]|11)/31)
(?!0?2/(29|30))
(?<month>0?[1-9]|1[012])
/
(?!0?0/)
(?<day>[012]?[0-9]|3[01])
/
(?<year>(1[89]|20)[0-9]{2})
|
(?<month>0?2)/(?<day>29)
/
#Years ending in 00 are only leap years if they're divisible by 400:
(?!1[89]00)
(?<year>(1[89]|20) ( [24680][048] | [13579][26] ) )
)$

关于ASP.NET 日期正则表达式验证器 99/99/2012,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11037883/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com