Top "Datetime-parsing" questions

How do I parse an ISO 8601-formatted date?

I need to parse RFC 3339 strings like "2008-09-03T20:56:35.450686Z" into Python's datetime type. I have found strptime in …

python datetime iso8601 datetime-parsing rfc3339
How do I translate an ISO 8601 datetime string into a Python datetime object?

I'm getting a datetime string in a format like "2009-05-28T16:15:00" (this is ISO 8601, I believe). One hackish option …

python datetime iso8601 datetime-parsing
Parse DateTime string in JavaScript

Does anyone know how to parse date string in required format dd.mm.yyyy?

javascript datetime-format datetime-parsing
How can I parse a time string containing milliseconds in it with python?

I am able to parse strings containing date/time with time.strptime >>> import time >>> …

python date time datetime-parsing
Parse date string and change format

I have a date string with the format 'Mon Feb 15 2010'. I want to change the format to '15/02/2010'. …

python datetime datetime-parsing
Parse rfc3339 date strings in Python?

I have a datasets where all the dates have the following format: 2012-10-09T19:00:55Z I'd like to be …

python date datetime-parsing rfc3339
How to create a .NET DateTime from ISO 8601 format

I've found how to turn a DateTime into an ISO 8601 format, but nothing on how to do the reverse in …

c# .net datetime iso8601 datetime-parsing
Parsing time string in Python

I have a date time string that I don't know how to parse it in Python. The string is like …

python datetime datetime-parsing
Parse 'Date & Time' string in Javascript which are of custom format

I have to parse a date and time string of format "2015-01-16 22:15:00". I want to parse this into JavaScript …

javascript jquery momentjs datejs datetime-parsing
SimpleDateFormat producing wrong date time when parsing "YYYY-MM-dd HH:mm"

I am trying to parse a String (YYYY-MM-dd HH:mm) to Date, however getting wrong date than expected. CODE: Date …

java datetime simpledateformat datetime-parsing