本文介绍了格式化新的Date()到EEE MMM dd HH:mm:ss zzz yyyy的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用new date()显示日期/时间。

I have a date/time displayed using "new date()".

它目前显示

"Thu May 31 2012 13:04:29 GMT-0500 (CDT)".

我需要这样:

 "Thu May 31 13:04:29 CDT 2012".

如何格式化?

推荐答案

您可以使用正则表达式从标准日期字符串中提取时区。

You can use a regular expression to extract the timezone from the standard date string.

var d            = new Date();
var customFormat = d.toString().slice(0,7) + ' ' +              //Day and Month
                   d.getDate() + ' ' +                          //Day number
                   d.toTimeString().slice(0,8) + ' ' +          //HH:MM:SS
                   /\(.*\)/g.exec(d.toString())[0].slice(1,-1)  //TimeZone
                   + ' '  + d.getFullYear();                    //Year

这篇关于格式化新的Date()到EEE MMM dd HH:mm:ss zzz yyyy的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-27 22:56