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
|
3
|
|||
|
|
|
This gives you a date similar to 2008-09-22T13:57:31.2311892-04:00 Another way is:
which gives you 2008-09-22T14:01:54.9571247Z To get the format you specified in your Edit, you can use:
|
|||
|
|
|
|
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 |
||
|
|
|
|
Returns something like 2008-04-10T06:30:00 UtcNow obviously returns a Utc time so no harm in:
|
||||
|
|
|
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:
|
||
|
|
|
|
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); |
|||
|