gpt4 book ai didi

C# 验证日期模式

转载 作者:太空宇宙 更新时间:2023-11-03 21:37:39 24 4
gpt4 key购买 nike

我正在一个框架中工作以生成代码。日期和时间字段的属性之一是它的格式。它必须是 DateTime.ToString() 接受的格式,例如 dd/MM/yyyy。我如何验证在应用程序中键入的掩码是否是 .ToString() 的有效日期时间模式?

最佳答案

第一个变体使用 System.Globalization。第二个是脏的。

static bool ValidateFormat(string customFormat)
{
return !String.IsNullOrWhiteSpace(customFormat) && customFormat.Length > 1 && DateTimeFormatInfo.CurrentInfo.GetAllDateTimePatterns().Contains(customFormat);
}

static bool ValidateFormat(string customFormat)
{
try
{
DateTime.Now.ToString(customFormat);
return true;
}
catch
{
return false;
}
}

关于C# 验证日期模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20887411/

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