사용시 문제 DateTime.TryParse
는 구분 기호없이 입력 된 날짜의 매우 일반적인 데이터 입력 사용 사례를 지원하지 않는다는 것입니다 (예 : 011508
.
이를 지원하는 방법의 예는 다음과 같습니다. (이것은 내가 구축중인 프레임 워크에서 가져온 것이므로 서명이 약간 이상하지만 핵심 로직을 사용할 수 있어야합니다.)
private static readonly Regex ShortDate = new Regex(@"^\d{6}$");
private static readonly Regex LongDate = new Regex(@"^\d{8}$");
public object Parse(object value, out string message)
{
msg = null;
string s = value.ToString().Trim();
if (s.Trim() == "")
{
return null;
}
else
{
if (ShortDate.Match(s).Success)
{
s = s.Substring(0, 2) + "/" + s.Substring(2, 2) + "/" + s.Substring(4, 2);
}
if (LongDate.Match(s).Success)
{
s = s.Substring(0, 2) + "/" + s.Substring(2, 2) + "/" + s.Substring(4, 4);
}
DateTime d = DateTime.MinValue;
if (DateTime.TryParse(s, out d))
{
return d;
}
else
{
message = String.Format("\"{0}\" is not a valid date.", s);
return null;
}
}
}