Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a string "2009-10-08 08:22:02Z" which is in ISO-8601 format.

How do I use DateTime to parse this format?

share|improve this question
1  
ISO 8601 also allows a time zone offset to be specified (eg "2009-10-08T12:52:02+04:30" would be the same time as above). However none of the answers address this... – Peter McEvoy Apr 11 '12 at 8:49

2 Answers

        string txt= "2009-10-08 08:22:02Z";
        DateTime output = DateTime.ParseExact(txt, "u", System.Globalization.CultureInfo.InvariantCulture);

The DateTime class supports the standard format string of u for this format

I think for the ISO format (with the T separator), use "s" instead of "u". Or use:

        string txt= "2009-10-08 08:22:02Z";
        DateTime output = DateTime.ParseExact(txt, new string[] {"s", "u"}, System.Globalization.CultureInfo.InvariantCulture, System.Globalization.DateTimeStyles.None);

to support both formats.

share|improve this answer

No, it's not ISO 8601. Valid ISO 8601 representation would have T between time and date parts.

DateTime can natively handle valid ISO 8601 formats. However, if you're stuck with this particular representation, you can try DateTime.ParseExact and supply a format string.

share|improve this answer
3  
Cheers but the wiki shows both formats – Kaya Oct 8 '09 at 9:24
2  
I was unable to parse my string using either "u" or "s" however replacing the T with a space is easily done. This seems to work. I'm using VB .NET with .NET 2.0. – Brian Sweeney Sep 23 '10 at 16:51
4  
-1: I'm sorry but this answer is simply wrong. The OP's string is valid ISO-8601. The ISO-8601 standard (pdf) uses a space in the extended format. Moreover, DateTime cannot natively handle 95% of what's in ISO-8601; it just happens to understand one specific part of this standard. – romkyns Dec 22 '11 at 10:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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