vote up 15 vote down star
3

Given:

DateTime.UtcNow

How do I get a string which represents the same value in an ISO8601 compliant format?

Note that ISO8601 defines a number of similar formats (wikipedia). The specific format I am looking for is:

yyyy-MM-ddTHH:mm:ssZ

flag

0% accept rate

5 Answers

vote up 22 vote down

DateTime.UtcNow.ToString("yyyy-MM-ddTHH\:mm\:ss.fffffffzzz");

This gives you a date similar to 2008-09-22T13:57:31.2311892-04:00

Another way is:

DateTime.UtcNow.ToString("o");

which gives you 2008-09-22T14:01:54.9571247Z

To get the format you specified in your Edit, you can use:

DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ")

DateTime Formatting Options

link|flag
vote up 4 vote down

DateTime.UtcNow.ToString ( "s", System.Globalization.CultureInfo.InvariantCulture ) should give you what you are looking for as the the "s" format specifier is described as Sortable date/time pattern; conforms to ISO 8601

link|flag
vote up 3 vote down

DateTime.UtcNow.ToString("s")

Returns something like 2008-04-10T06:30:00

UtcNow obviously returns a Utc time so no harm in:

string.Concat(DateTime.UtcNow.ToString("s"), "Z")

link|flag
Just out of interest: Why string.Concat() rather than '+'? – Daniel Fortunov Sep 22 '08 at 14:53
Habbit, is there a difference? – Iain Sep 23 '08 at 13:26
vote up 0 vote down

To convert DateTime.UtcNow to a string representation of yyyy-MM-ddTHH:mm:ssZ, you can use the ToString() method of the DateTime structure with a custom formatting string. When using custom format strings with a DateTime, it is important to remeber that you need to escape your seperators using single quotes.

The following will return the string represention you wanted:

DateTime.UtcNow.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss'Z'", DateTimeFormatInfo.InvariantInfo)
link|flag
vote up 0 vote down

How can we bring the ISO 8601 date string back to DateTime object?

It is not working in the following way:

string ss = "2009-03-23T06:00:00-04:00";

DateTime dt2 = DateTime.ParseExact(ss, "yyyy'-'MM'-'dd'T'HH':'mm':'ss'Z'", System.Globalization.CultureInfo.InvariantCulture);

or

DateTime dt2 = DateTime.ParseExact(ss, "yyyy-MM-ddTHH:mm:ssZ", System.Globalization.CultureInfo.InvariantCulture);

link|flag
DateTime.ParseExact(dateString, "s", CultureInfo.InvariantCulture); – Aros Jun 8 at 20:07

Your Answer

Get an OpenID
or

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