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

javascript - How to parse given date string using moment.js? - Stack Overflow

programmeradmin0浏览0评论

I want the following date string to be formatted using moment.js but it gives invalid date.

var dateString = '2/17/2016 12:16PM GMT-05:00';
var pattern = 'MM/DD/YYYY h:mma ZZ';
var testDate = moment(dateString).format(pattern); //Invalid Date

How to parse it correctly or is there any other way to do so?

I want the following date string to be formatted using moment.js but it gives invalid date.

var dateString = '2/17/2016 12:16PM GMT-05:00';
var pattern = 'MM/DD/YYYY h:mma ZZ';
var testDate = moment(dateString).format(pattern); //Invalid Date

How to parse it correctly or is there any other way to do so?

Share Improve this question edited Jun 27, 2022 at 10:41 Quentin 945k132 gold badges1.3k silver badges1.4k bronze badges asked Feb 17, 2016 at 7:18 sarsjitssarsjits 871 silver badge11 bronze badges 1
  • PM makes this an invalid date. Check it with new Date('2/17/2016 12:16PM GMT-05:00'). – lxe Commented Feb 17, 2016 at 7:22
Add a ment  | 

2 Answers 2

Reset to default 9

Just use pattern as second parameter in moment function

var testDate = moment(dateString, pattern)

more here in the docs: http://momentjs./docs/#/parsing/string-format/

You can try it:

var dateString = '2/17/2016 12:16PM GMT-05:00';
var pattern = 'MM/DD/YYYY h:mma ZZ';
var testDate = moment(dateString, "MM/DD/YYYY h:mmA -hh:mm").format(pattern);

发布评论

评论列表(0)

  1. 暂无评论