vote up 7 vote down star

I have a datetime coming back from an XML file in the format:-

20080916 11:02

as in yyyymm hh:ss

How can i get the datetime.parse function to pick up on this? Ie parse it without erroring? (.net 2.0) Cheers

flag

1 Answer

vote up 16 vote down check
DateTime.ParseExact(input,"yyyyMMdd HH:mm",null);

assuming you meant to say that minutes followed the hours, not seconds - your example is a little confusing.

The ParseExact documentation details other overloads, in case you want to have the parse automatically convert to Universal Time or something like that.

As @Joel Coehoorn mentions, there's also the option of using TryParseExact, which will return a Boolean value indicating success or failure of the operation - I'm still on .Net 1.1, so I often forget this one.

If you need to parse other formats, you can check out the Standard DateTime Format Strings.

link|flag
WOW, I wish I knew about that! – Timothy Khouri Dec 4 '08 at 16:23
Fantastic.Thanks very much for that :) – anonym0use Dec 4 '08 at 16:28
I'm happy to be of service. – Blair Conrad Dec 4 '08 at 16:33
Don't forget DateTime.TryParseExact() – Joel Coehoorn Dec 4 '08 at 16:36
Also: standard Xml has it's own very specific DateTime format, and the .Net Xml tools should be able to read it. – Joel Coehoorn Dec 4 '08 at 16:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.