ParseExact
メソッドを使用する必要があります。これは、日時の形式を指定する2番目の引数として文字列を取ります。次に例を示します。
dateString = "2011-29-01 12:00 am";
format = "yyyy-dd-MM h:mm tt";
try
{
result = DateTime.ParseExact(dateString, format, provider);
Console.WriteLine("{0} converts to {1}.", dateString, result.ToString());
}
catch (FormatException)
{
Console.WriteLine("{0} is not in the correct format.", dateString);
}
ユーザーがUIで形式を指定できる場合は、それをこのメソッドに渡すことができる文字列に変換する必要があります。これを行うには、ユーザーがフォーマット文字列を直接入力できるようにするか(ただし、無効なフォーマット文字列を入力するため、変換が失敗する可能性が高くなります)、または可能な選択肢を提示するコンボボックスを使用します。これらの選択肢のフォーマット文字列を設定します。
入力が正しくない可能性がある場合(たとえば、ユーザー入力)TryParseExact
、エラーの場合を処理するために例外を使用するよりも使用する方がよいでしょう。
dateString = "2011-29-01 12:00 am";
format = "yyyy-dd-MM h:mm tt";
DateTime result;
if (DateTime.TryParseExact(dateString, format, provider, DateTimeStyles.None, out result))
{
Console.WriteLine("{0} converts to {1}.", dateString, result.ToString());
}
else
{
Console.WriteLine("{0} is not in the correct format.", dateString);
}
より良い代替策は、日付形式の選択肢をユーザーに提示せずに、形式の配列をとるオーバーロードを使用することです。
string[] formats= {"M/d/yyyy h:mm:ss tt", "M/d/yyyy h:mm tt",
"MM/dd/yyyy hh:mm:ss", "M/d/yyyy h:mm:ss",
"M/d/yyyy hh:mm tt", "M/d/yyyy hh tt",
"M/d/yyyy h:mm", "M/d/yyyy h:mm",
"MM/dd/yyyy hh:mm", "M/dd/yyyy hh:mm",
"MM/d/yyyy HH:mm:ss.ffffff" };
string dateString;
try
{
dateValue = DateTime.ParseExact(dateString, formats,
new CultureInfo("en-US"),
DateTimeStyles.None);
Console.WriteLine("Converted '{0}' to {1}.", dateString, dateValue);
}
catch (FormatException)
{
Console.WriteLine("Unable to convert '{0}' to a date.", dateString);
}
構成ファイルまたはデータベースから可能な形式を読み取る場合は、人々が日付を入力したいさまざまな方法に遭遇したときに、これらに追加できます。
TryParse
。それはbool success = DateTime.TryParse(...);
です。