Tagged Questions
ISO 8601 is the International Standards Organization's standard for representing time as a string. It covers dates, times, timezones, durations, and many other things.
31
votes
2answers
14k views
Converting ISO8601-compliant String to java.util.Date
solved, see answer below
Hi,
I am trying to convert an ISO8601 formatted String to a java.util.Date. I found the pattern
"yyyy-MM-dd'T'HH:mm:ssZ" to be ISO8601-compliant if used with a Locale ...
15
votes
4answers
5k views
How do I output an ISO-8601 formatted string in Javascript?
I have a date object from which I'd like to render an HTML snippet like <abbr title="2010-04-02T14:12:07">A couple days ago</abbr>. I have the "relative time in words" portion from another ...
13
votes
4answers
5k views
How do I translate a 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 hack-ish option seems to be to parse the string using time.strptime and passing the first 6 ...
10
votes
3answers
10k views
How to display a date as iso 8601 format with PHP
I'm trying to display a datetime from my MySQL database as an iso 8601 formated string with PHP but it's coming out wrong.
17 Oct 2008 is coming out as: 1969-12-31T18:33:28-06:00 which is clearly not ...
8
votes
5answers
429 views
How do I convert an ISO 8601 string to a Delphi TDate?
I can convert a Delphi TDate to ISO 8601 format easily using this:
DateTimeToString(result, 'yyyy-mm-dd', myDate);
What's the idiomatic way to do the inverse conversion? StringToDateTime() doesn't ...
7
votes
4answers
3k views
Does Javascript/EcmaScript3 support ISO8601 date parsing?
How are you currently parsing ISO8601 dates e.g. 2010-02-23T23:04:48Z in JavaScript?
Some browsers return NaN (including Chrome) when using the code below, FF3.6+ works though.
<html>
...
6
votes
2answers
539 views
Is there a full implementation for ISO-8601 date parsing for Ruby
The Time.iso8601 method is a restricted subset of ISO-8601.
Does anyone know what the limitations
are?
Does anyone know of a full
implementation for Ruby? I'm using
MRI 1.8.7
Thanks
Update
...
6
votes
3answers
3k views
Is there a simple way of converting an ISO8601 timestamp to a formatted NSDate?
If I use the following code:
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm"];
NSDate *myDate = [dateFormatter ...
6
votes
4answers
3k views
ISO Time (ISO 8601) in Python?
I have a file. In Python, I would like to take its creation time, and convert it to an ISO time (ISO 8601) string while preserving the fact that it was created in the Eastern Time Zone.
How do I take ...
5
votes
1answer
413 views
What's the right way to parse an ISO8601 date in cocoa?
I would like to parse ISO8601 dates in Cocoa, both for iOS 4+ and OSX 10.6+
There are a few questions about this on StackOverflow already, but in my opinion none of them contain good answers. Here's ...
5
votes
1answer
915 views
Converting timezone-aware datetime to local time in Python
How do you convert a timezone-aware datetime object to the equivalent non-timezone-aware datetime for the local timezone?
My particular application uses Django (although, this is in reality a generic ...
5
votes
4answers
2k views
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#.
I have '2010-08-20T15:00:00Z' and I want to turn it into a DateTime object.
I could separate ...
5
votes
2answers
10k views
Java SimpleDateFormat for time zone with a colon seperator?
I have a date in the following format: 2010-03-01T00:00:00-08:00
I have thrown the following SimpleDateFormats at it to parse it:
private static final SimpleDateFormat[] FORMATS = {
new ...
4
votes
3answers
86 views
Timestamp arithmetic in bash
Say I have two log files (input.log and output.log) with the following format:
2012-01-16T12:00:00 12345678
The first field is the processing timestamp and the second is a unique ID. I'm trying to ...
4
votes
3answers
105 views
Generate RFC 3339 timestamp in Python
I'm trying to generate an RFC 3339 UTC timestamp in Python. So far I've been able to do the following:
>>> d = datetime.datetime.now()
>>> print d.isoformat('T')
...
4
votes
2answers
209 views
ISO 8601 to time_t conversion in C or vice versa
According to ISO 8601, time can be specified in different formats.
My program does not know which exact ISO 8601 format will be specified.
In this case, how can I convert it to time_t?
strptime ...
4
votes
5answers
2k views
RFC822 Timezone Parsing in Java
I have a JS date that is being converted by Dojo into RFC822 format. The function call -
dojo.date.toRfc3339(jsDate), generates the following date - 2007-02-26T20:15:00+02:00.
I have an application ...
3
votes
1answer
122 views
Annoying javascript timezone adjustment issue
I have set up a JSON that fetches the current time from server. For example:
{
"myservertime": "2011-10-02T23:00+02:00"
}
So this is the CET summer time right now.
Now, I also have a jQuery code ...
3
votes
1answer
567 views
How can I convert an ISO8601 timestamp into unix time in Perl?
Given a string that represents a date/time in ISO8601 format (e.g. 20100723T073000), I need to ultimately parse this into a user-supplied format using a general strftime format string. In order to do ...
3
votes
3answers
4k views
Parse ISO8601 date in Objective-C (iPhone OS SDK)
How do I parse "2010-04-30T00:45:48.711127" into an NSDate? (and maintain all precision)
3
votes
1answer
1k views
Select ISO 8601 Timestamp from MySQL Database
I am currently using PHP/MySQL and the jQuery timeago plugin. Basically, I need to pull my timestamp from the database and convert it to ISO 8601 format.
Like this 2008-07-17T09:24:17Z
Currently, ...
3
votes
2answers
348 views
Javascript Date to IS8601 format?
I am learning javascript and I am trying to figure out if there is a simple way to convert a standard formatted Date to ISO8601 format (YYYY-MM-DDThh:mm:ssTZD).
Advices?
3
votes
4answers
2k views
How to parse an ISO-8601 duration in Objective C?
I'm looking for an easy way to parse a string that contains an ISO-8601 duration in Objective C. The result should be something usable like a NSTimeInterval.
An example of an ISO-8601 duration: ...
2
votes
2answers
91 views
Date formatting and parsing issue
I have checked this site and the web for a solution but with no result.
I have been looking all over the web for a solution to my date format problem. I have a string that I want to convert into a ...
2
votes
1answer
94 views
ISO 8601 Repeating Interval
Wikipedia gives an example of an ISO 8601 example of a repeating interval:
R5/2008-03-01T13:00:00Z/P1Y2M10DT2H30M
This is what this means:
R5 means that the interval after the slash is repeated 5 ...
2
votes
1answer
761 views
Parsing an ISO8601 date/time (including TimeZone) in Excel
I need to parse an ISO8601 date/time format with an included timezone (from an external source) in Excel/VBA, to a normal Excel Date. As far as I can tell, Excel XP (which is what we're using) doesn't ...
2
votes
1answer
1k views
Help parsing ISO 8601 date in Javascript
Need help/tips on converting an ISO 8601 date with the following structure into javascript.
CCYY-MM-DDThh:mm:ssTZD
I'd like to frmat the date like so:
January 28, 2011 - 7:30PM EST
I'd like to ...
2
votes
1answer
391 views
Python - Convert date to ISO 8601
In Python, how can I convert a string like this:
Thu, 16 Dec 2010 12:14:05 +0000
to ISO 8601 format, while keeping the timezone?
Please note that the orginal date is string, and the output ...
2
votes
2answers
323 views
Is there a comprehensive library/module for ISO 8601 in ruby?
Is there already an implementation of all the date, time, duration and interval usage of the ISO 8601 standard in ruby? I mean something like a Class where you can set and get the details like, year, ...
2
votes
2answers
422 views
C# ISO 8601 Time Interval validation
I have searched for a while and can't seem to find anything that's related to this.
I need to validate an ISO 8601 time interval. There is loads of stuff about ISO 8601 date times but i specifically ...
2
votes
2answers
529 views
Timeago + DateJS = NaN
I'm trying to use timeago (source), with datejs, and it's not working. Here's some sample code I'd expect to work (given that timeago and datejs are loaded):
>>> d = new Date()
Mon Jun 21 ...
2
votes
2answers
2k views
.net parsing ISO 8601 string to DateTime?
I have a string "2009-10-08 08:22:02Z" which is in ISO-8601 format.
How do I use DateTime to parse this format?
2
votes
2answers
2k views
How to specify time zone (UTC) when converting to Unix time? (Python)
I have a utc timestamp in the IS8601 format and am trying to convert it to unix time. This is my console session:
In [9]: mydate
Out[9]: '2009-07-17T01:21:00.000Z'
In [10]: parseddate = ...
1
vote
1answer
28 views
Convert ISO 8601 to unixtimestamp
How can I convert
2012-01-18T11:45:00+01:00 (ISO 8601) to 1326883500 (unixtimestamp) in PHP?
1
vote
1answer
54 views
How do i store a ISO8601 date in mysql
'2011-10-02T23:25:42Z'
What data type should i use for storing a ISO8601 date in mysql DB? Varchar or datetime field? Which is best for comparison when running queries?
1
vote
2answers
99 views
VBScript ISO8601
In VBScript, does FormatDateTime have ISO 8601 support?
If not, how would I write such function with it?
For example:
Response.Write FormatAsISO8601(#05/04/2011#)
Function ...
1
vote
0answers
209 views
NSDateFormatter and Strings with Timezone Format “+HH:mm”
Okay, up to this point I have read
the Docs and
Technotes at Apple,
the important part of the Unicode reference and
quite a few questions and answers here
regarding how to use NSDateFormatter in ...
1
vote
2answers
660 views
How can I store the current timestamp in SQLite as ticks?
I have a SQLite database where I store the dates as ticks. I am not using the default ISO8601 format. Let's say I have a table defined as follows:
CREATE TABLE TestDate (LastModifiedTime DATETIME)
...
1
vote
3answers
1k views
Parse and create ISO 8601 Date and time intervals, like PT15M in PHP
A library and webservice I am using, communicates time-intervals in ISO 8601: PnYnMnDTnHnMnS. I want to convert such formats to seconds. And vice versa. Seconds are a lot easier to calculate with.
...
1
vote
2answers
1k views
The right ISO 8601 format
I am refactoring some code for a Ruby library. This code includes a Date parser.
One of the tests was to parse this string "2008-02-20T8:05:00-010:00" which is supposed to be ISO 8601.
The previous ...
0
votes
2answers
22 views
ISO 8601 date into MySQL database - just can't get it to work
I've got a really simple problem but I just can't sort it, fairly new to PHP and MySQL which is why im struggling
Overview - I want to insert an ISO8601 date into MySQL DB table using PHP
I have a ...
0
votes
2answers
66 views
iOS - how to compare two ISO 8601 formatted times?
I want to check if a time such as "2011-03-29T15:57:02.680-04:00" is before the current time. How would I go about doing this?
0
votes
1answer
121 views
fullcalendar parsing ISO8601 Date does not work
I'm getting a valid ISO8601 back from a JSON string, but it's not displayed correct in the fullcalendar.
creating date format with JAVA formatter:
SimpleDateFormat df = new ...
0
votes
1answer
124 views
How do I specify a DateFormat to use for all Restsharp requests on a given client?
My rest service uses ISO 8601 as the date format for all requests and responses. Is there a way to set this on the RestClient or do I need to set it on each individual RestRequest?
0
votes
3answers
98 views
PHP validate ISO 8601 date string
How do you validate ISO 8601 date string (ex: 2011-10-02T23:25:42Z).
I know that there are several possible representations of ISO 8601 dates, but I'm only interested in validating the format I gave ...
0
votes
2answers
113 views
Julian Day to ISO 8601 string in SQLite
I have a table that stores date/time values as julian days in SQLite (using the julianday() function). I can't seem to figure out how to convert them back to ISO 8601 style strings ...
0
votes
1answer
81 views
php - format date ISO8601?
I have a year (2002) and I'm trying to get it into the following format:
2002-00-00T00:00:00
I tried various iterations, the last of which was this:
$testdate = ...
0
votes
4answers
176 views
Bash's `date` on Mac doesn't have ISO 8601 `-I` option?
In a Bash script, I want to print the current datetime in ISO 8601 format (preferably UTC), and it seems that this should be as simple as date -I:
http://ss64.com/bash/date.html
But this doesn't ...
0
votes
1answer
327 views
jQuery Full Calendar, all events display as all day
All of the events for Full Calendar are showing as "all day" in the agenda views. This is the code that I am using to initialize the calendar :
$(document).ready(function() {
...
0
votes
1answer
343 views
Why are Python's datetime ISO-functions logically incorrect and buggy?
I'm kind of stunned that the python datetime .isoformat() function doesn't return correct information. The function correctly returns an ISO 8601-formatted string when a timezone is provided to the ...