I have date/time format, for example:
"2012-06-28T08:26:57Z"
What kind of date/time format is that and how can it be converted into the following format, using DateTime format in C#.:
"8/24/2012 4:09:17 AM"
|
|
You can do this:
For the meaning of each part of your input string, take a look at this link: http://www.w3.org/TR/NOTE-datetime |
|||||||||||
|
|
This is an ISO8601 date/time string. The numbers are the year, month, day, hour, minute, and second (in that order). The "T" is a placeholder. It means nothing. The "Z" is an indicator that the time is relative to GMT, rather than in a local time zone. |
|||||
|
|
Try this to convert Universal datetime to local time
|
|||
|
|
|
try to use something liKe this.
Note that 'General date/time pattern (long time).' in .net is culture specific. From msdn:
|
|||||
|
|
|
That is Universal Sortable date format You can use following code to convert it
Update You can try this also
|
||||
|
http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx this is answer to your question. Here you can see how to create different date formats. According to this resource, you may use something like this:
|
|||||||||||||
|
|
Try converting the date into string like this
Here date is a variable in which a date is present or try this
These links might also be helpful to you. |
|||
|
|