在javascript中将dd / mm / yyyy转换为mm / dd / yyyy

时间:2011-03-25 13:47:06

标签: javascript

我想在javascript中将dd / mm / yyyy转换为mm / dd / yyyy。

12 个答案:

答案 0 :(得分:16)

var initial = 'dd/mm/yyyy'.split(/\//);
console.log( [ initial[1], initial[0], initial[2] ].join('/')); //=> 'mm/dd/yyyy'
// or in this case you could use
var initial = 'dd/mm/yyyy'.split(/\//).reverse().join('/');

答案 1 :(得分:7)

var date = "24/09/1977";
var datearray = date.split("/");

var newdate = datearray[1] + '/' + datearray[0] + '/' + datearray[2];

newdate将包含09/24/1977。 split方法会将字符串拆分为“/”,因此如果日期字符串为“24/9/1977”,它仍然可以工作并返回9/24/1977。

答案 2 :(得分:4)

dd/mon/yyyy转换为mm/dd/yyyy

months = {'jan': '01', 'feb': '02', 'mar': '03', 'apr': '04', 'may': '05',
'jun': '06', 'jul': '07', 'aug': '08', 'sep': '09', 'oct': '10', 'nov': '11',
'dec': '12'};

split = 'dd/mon/yyyy'.split('/');
[months[split[1]], split[0], split[2]].join('/');

dd/mm/yyyy转换为mm/dd/yyyy

split = 'dd/mm/yyyy'.split('/');
[split[1], split[0], split[2]].join('/');

答案 3 :(得分:3)

var months = new Array("jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec");
var ddSplit = '12/23/2011'.split('/');  //date is mm/dd/yyyy format
alert(ddSplit[1]+'-'+months[ddSplit[0]-1] + '-' + ddSplit[2])

答案 4 :(得分:3)

这是一个moment.js版本。该库可在http://momentjs.com/

找到
//specify the date string and the format it's initially in
var mydate = moment('15/11/2000', 'DD/MM/YYYY'); 

//format that date into a different format
moment(mydate).format("MM/DD/YYYY");

//outputs 11/15/2000

答案 5 :(得分:2)

尝试使用正则表达式查找和切换字符串部分的示例:

var d1 = "03/25/2011";
var d2 = d1.replace(/^(\d{1,2}\/)(\d{1,2}\/)(\d{4})$/,"$2$1$3");
alert("d1:"+d1 +"\n d2:"+d2 )

/* 
// OUTPUT

  d1: 03/25/2011
  d2: 25/03/2011

*/

编辑:

我注意到没有其他答案正在使用正则表达式,我真的很想知道为什么......:)

答案 6 :(得分:1)

var date = "31/03/2017 14:28";
var regex = /(\d+)/g;
var d = date.match(regex);
var out = d[2] + "-" + d[1] + "-" + d[0] + " " + d[3] + ":" + d[4];
var dag = new Date(out);
console.log(dag);

这只是具有此正则表达式的数字的解决方案

答案 7 :(得分:0)

  var currentDate = new Date()
  var day = currentDate.getDate()
  var month = currentDate.getMonth()
  var year = currentDate.getFullYear()
  document.write("<b>" + month + "/" + day + "/" + year + "</b>")

答案 8 :(得分:0)

date = "01/Feb/2010"
monthes = {"Jan": "01", "Feb": "02", "Mar": "03" ... }
date_ar = date.split(/\//)
day = date_ar[0]
year = date_ar[2]
month = monthes[date_ar[1]]
new_date = [month, day, year].join("/")

答案 9 :(得分:0)

使用此功能

  

function dateFormat(existingFormat,neededFormat,existingSeperator,newSeperator,dateValue)
{
        var exst    =    existingFormat.toLowerCase().split(existingSeperator);
        var d       =    dateValue.split(existingSeperator);
        d[exst[0]]  =    d[0];  d[exst[1]]=d[1];   d[exst[2]]=d[2];

        var newst    =    neededFormat.toLowerCase().split(existingSeperator);
        newDate      =    d[newst[0]] +newSeperator+d[newst[1]] +newSeperator+d[newst[2]];
        return(newDate); 

}
var dd    =    dateFormat('dd/yy/mm','mm/dd/yy','/','-','30/87/05');//dateFormat(existingFormat,neededFormat,existingSeperator,newSeperator,dateValue)

//使用两种格式的日期月份和年份相同的名称

您可以使用此功能将任何格式日期(仅包括月份日期年份)转换为任何格式。 :)

答案 10 :(得分:0)

试试这个,它对我有用:

var fechaLatinFormat= "05-10-2016";//octuber 5, 2016 - octubre 5 del 2016
var datePieces = fechaLatinFormat.split("-"); 
var preFinalDate = new Date(parseInt(datePieces[2]), parseInt(datePieces[1]) - 1, parseInt(datePieces[0]));    
console.log(preFinalDate.format("mm-dd-yyyy")); 

或者:

var fechaLatinFormat= "05-10-2016";//octuber 5, 2016 - octubre 5 del 2016
var datePieces = fechaLatinFormat.split("-"); 
var preFinalDate = [datePieces[1] , datePieces[0] , datePieces[2]];
console.log(preFinalDate.join("-"));

答案 11 :(得分:0)

您可以使用以下指定的功能,1个日期和2个日期分隔符(可选) 日期将以所需的格式返回。

const setFormatDDMMYYYYtoMMDDYYYY = (date, separator = '/') => {
  const [day, month, year] = date.split('/');
  return month + separator + day + separator + year;
};