Converting a custom date format (string) to a datetime

后端 未结 3 932
鱼传尺愫
鱼传尺愫 2021-01-02 00:07

I have a large set (100+ million) of observations with the date represented as a custom string format. We did not generate the date strings, I just need to convert the date

相关标签:
3条回答
  • 2021-01-02 00:38

    You can use DateTime.ParseExact, and pass the format into this method using the custom date and time format strings. This will allow you to parse the date in one pass.

    0 讨论(0)
  • 2021-01-02 00:49

    Take a look at DateTime.ParseExact, e.g.

    var dateTime = DateTime.ParseExact(
        "12 JUN 2010", 
        "dd MMM yyyy", 
        CultureInfo.InvariantCulture);
    

    You can also specify a fourth parameter to set the Kind of date/time, for example if they are UTC date/times then you'd likely want to specify DateTimeStyles.AssumeUniversal.

    0 讨论(0)
  • 2021-01-02 01:00

    That DateTime string is valid for DateTime.Parse() (or .TryParse())

    As for a truly custom string that .Parse() can't handle, you are probably correct, you'd need to pull your string apart and reassemble it in a useful manner.

    0 讨论(0)
提交回复
热议问题