vote up 1 vote down star

I'm parsing an rss feed and each entry has a timestamp such as this: 2009-09-21T21:24:43+04:00 Is there any way to convert this date format to a unix timestamp with javascript?

I just want to be able to record the latest rss entry date, but I need to standardize the time to GMT time or Unix timestamp to do this.

flag

67% accept rate
@makee - I skipped over that detail, sorry for that. – karim79 Sep 22 at 0:56
@makee - this is a quibble, but the is an ISO-8601 timestamp (or an XML 'dateTime' value) not a "GMT timestamp". Indeed, the timestamp says that timezone is 4:00hrs ahead of UTC/GMT. – Stephen C Sep 22 at 1:33
@makee - this is a quibble, but the string that you gave as an example is an ISO-8601 timestamp (or maybe an XML Schema 'dateTime' value) not a "GMT timestamp". Indeed, the timestamp says that timezone is 4:00hrs ahead of UTC/GMT. – Stephen C Sep 22 at 1:35

2 Answers

vote up 0 vote down check

The format appears to be ISO-8601. Assuming that is true, this blog provides a javascript solution to this.

link|flag
Apparently, that solution contains at least one bug, possibly two. – Robert L Sep 22 at 2:44
vote up 1 vote down

This question appears to be a duplicate of the one here, which I answered.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.