Page 1 of 1

Change date type in pubdate

Posted: Sun Jun 15, 2014 7:50 pm
by Ayuntamiento de Viver - Oficinas

Hello, I'm developing an RSS service, and in want modify the pubDate. Now I have this date format: "Sat, 24 May 2014 16:08:43 +0000". And I want this format: "24-5-14".
Thanks.


Change date type in pubdate

Posted: Sun Jun 15, 2014 10:06 pm
by Yurii Orishchuk

Hello.

Please use following code:

pre

//This is your format date string variable. Please replace it with value you need. Or assign to other variable.
var yourFormatDate = "Sat, 24 May 2014 16:08:43 +0000";

var yourDate = new Date(yourFormatDate);

var newDateFormat = yourDate.getDate() + "-" + (yourDate.getMonth() + 1) + "-" + yourDate.getFullYear().toString().match(/\d\d$/gi)

/pre

Regards.