最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - remove just 'UTC' text at the end from DateTime stamp - Stack Overflow

programmeradmin0浏览0评论

I am using date.toGMTString() to get DateTime as GMT standrad. so what I am getting is 'Fri, 26 Apr 2013 17:08:35 UTC' this. I just want to display this without the text 'UTC'. please let me know

I am using date.toGMTString() to get DateTime as GMT standrad. so what I am getting is 'Fri, 26 Apr 2013 17:08:35 UTC' this. I just want to display this without the text 'UTC'. please let me know

Share Improve this question edited Apr 29, 2013 at 19:59 brbcoding 13.6k2 gold badges39 silver badges51 bronze badges asked Apr 29, 2013 at 19:55 itdeveloperitdeveloper 412 silver badges8 bronze badges 1
  • date.toGMTString().substr(0, 25) – Xymostech Commented Apr 29, 2013 at 19:57
Add a ment  | 

4 Answers 4

Reset to default 7

Use slice:

date.toGMTString().slice(0, -4)

Btw, you should notice that toGMTString is deprecated and the same as toUTCString, and that the method does return an implementation-dependent human-readable UTC date string. You cannot be sure that it ends with " UTC" (or " GMT"), so you rather might use

date.toUTCString().replace(/\s*(GMT|UTC)$/, "")

toGMTString() is deprecated... Use toUTCString() instead...

date.toUTCString().slice(0, -4)
var d= new Date();

d=d.toLocaleString(); 

//Converts a Date object to a string, using locale conventions
//hence the UTC or GMT+.. is removed

For ultimate in formatting options and cross-browser consistency, use Moment.js

var m = moment(date);
var s = m.format('ddd, D MMM YYYY H:mm:ss');

See the docs for other format strings, including localizable ones.

发布评论

评论列表(0)

  1. 暂无评论