重複の可能性:
c#で文字列をDateTimeに変換
文字列をフォーマットでDateTimeに変換するにはどうすればよいですか?
Convert.ToDateTime("12/11/17 2:52:35 PM")
結果は12/11/2017 02:52:35 PM
ですが、私の期待は11/17/2012 02:52:35 PM
であるため、これは正しくありません。
DateTime.ParseExact()
を探しています。
DateTime.ParseExact(myStr, "yy/MM/dd h:mm:ss tt", CultureInfo.InvariantCulture);
DateTime.ParseExact()
メソッドを使用します。
指定された形式とカルチャ固有の形式情報を使用して、日付と時刻の指定された文字列表現を同等のDateTimeに変換します。文字列表現の形式は、指定された形式と正確に一致する必要があります。
DateTime result = DateTime.ParseExact(yourdatestring,
"yy/MM/dd h:mm:ss tt",
CultureInfo.InvariantCulture);
DateTime.*Parse
メソッドの1つを使用することをお勧めします。
これらは、DateTime
を表す文字列、フォーマット文字列(またはそれらの配列)およびその他のパラメータを取ります。
カスタムフォーマット文字列 はyy/MM/dd h:mm:ss tt
になります。
そう:
var date = DateTime.ParseExact("12/11/17 2:52:35 PM",
"yy/MM/dd h:mm:ss tt"
CultureInfo.InvariantCulture);
文字列のカルチャ を指定する必要があります:
// Date strings are interpreted according to the current culture.
// If the culture is en-US, this is interpreted as "January 8, 2008",
// but if the user's computer is fr-FR, this is interpreted as "August 1, 2008"
string date = "01/08/2008";
DateTime dt = Convert.ToDateTime(date);
Console.WriteLine("Year: {0}, Month: {1}, Day: {2}", dt.Year, dt.Month, dt.Day);
// Specify exactly how to interpret the string.
IFormatProvider culture = new System.Globalization.CultureInfo("fr-FR", true);
// Alternate choice: If the string has been input by an end user, you might
// want to format it according to the current culture:
// IFormatProvider culture = System.Threading.Thread.CurrentThread.CurrentCulture;
DateTime dt2 = DateTime.Parse(date, culture, System.Globalization.DateTimeStyles.AssumeLocal);
Console.WriteLine("Year: {0}, Month: {1}, Day {2}", dt2.Year, dt2.Month, dt2.Day);
/* Output (assuming first culture is en-US and second is fr-FR):
Year: 2008, Month: 1, Day: 8
Year: 2008, Month: 8, Day 1
*/
これを試して
dateValue = DateTime.ParseExact(dateString,
"yy/MM/dd hh:mm:ss tt",
new CultureInfo("en-US"),
DateTimeStyles.None);
「tt」はAM/PM指定子です。