About 657,000 results
Open links in new tab
  1. How to convert a date in Excel to ISO 8601 format

    Oct 29, 2016 · 61 I am trying to save a date format in YYYY-MM-DD, for example, 2014-09-01 as a CSV file, but the format reverts back to the M/D/YYYY format when I do. I tried converting …

  2. How to convert an ISO date to the date format yyyy-mm-dd?

    Nov 10, 2016 · How can I get a date having the format yyyy-mm-dd from an ISO 8601 date? My 8601 date is 2013-03-10T02:00:00Z How can I get the following? 2013-03-10

  3. How do I format a Microsoft JSON date? - Stack Overflow

    Advice:: the official date format when you are using Json or XML is "yyyy-MM-dd", try to use this format where ever you are writing the API or consume it.

  4. Specifying a custom DateTime format when serializing with Json.Net

    However, there is a simple solution: subclass the IsoDateTimeConverter, then specify the date format in the constructor of the subclass. Apply the JsonConverter attribute where needed, …

  5. javascript - Converting json results to a date - Stack Overflow

    Instead of still using this old non standard serialization format I would recommend to modify the server code to return better format for date. Either an ISO string containing time zone …

  6. Decoding the expiry date of a JavaScript Web Token (JWT)?

    Jun 8, 2017 · I am unable to understand the expiry date format of the JWT embedded in my application. For example: 1473912000 What does this translate to? 1473912000 ms, some x …

  7. Convert one date format into another in PHP - Stack Overflow

    The simplist way to convert one date format into another is to use strtotime() with date(). strtotime() will convert the date into a Unix Timestamp. That Unix Timestamp can then be …

  8. Convert datetime to valid JavaScript date - Stack Overflow

    Mar 17, 2015 · I have a datetime string being provided to me in the following format: yyyy-MM-dd HH:mm:ss 2011-07-14 11:23:00 When attempting to parse it into a JavaScript date() object it …

  9. JSON Date and DateTime serialisation in c# & newtonsoft

    but this does not convert the DateTimes into the correct format, and how does C# deal with a Date only type? It always seems to serialise as DateTime.MinValue () Here is an example: …

  10. Convert a date format in PHP - Stack Overflow

    I am trying to convert a date from yyyy-mm-dd to dd-mm-yyyy (but not in SQL); however I don't know how the date function requires a timestamp, and I can't get a timestamp from this string. …