Ayuntamiento de Viver - Oficinas
Posts: 0
Joined: Sun Jun 15, 2014 7:50 pm

Change date type in pubdate

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.

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

Change date type in pubdate

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.

Return to “Issues”