web-dev-qa-db-ja.com

文字列をフォーマットで日時に変換するにはどうすればよいですか?

重複の可能性:
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であるため、これは正しくありません。

6
Ehsan

DateTime.ParseExact()を探しています。

DateTime.ParseExact(myStr, "yy/MM/dd h:mm:ss tt", CultureInfo.InvariantCulture);
16
SLaks

DateTime.ParseExact() メソッドを使用します。

指定された形式とカルチャ固有の形式情報を使用して、日付と時刻の指定された文字列表現を同等のDateTimeに変換します。文字列表現の形式は、指定された形式と正確に一致する必要があります。

   DateTime result = DateTime.ParseExact(yourdatestring, 
                                        "yy/MM/dd h:mm:ss tt",             
                                         CultureInfo.InvariantCulture);
3
Soner Gönül

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);
1
Oded

文字列のカルチャ を指定する必要があります:

// 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
 */
1
Woot4Moo

これを試して

dateValue = DateTime.ParseExact(dateString,
                                "yy/MM/dd hh:mm:ss tt",
                                new CultureInfo("en-US"),
                                DateTimeStyles.None);

「tt」はAM/PM指定子です。