admin管理员组文章数量:1345438
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 withnew Date('2/17/2016 12:16PM GMT-05:00')
. – lxe Commented Feb 17, 2016 at 7:22
2 Answers
Reset to default 9Just 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);
本文标签: javascriptHow to parse given date string using momentjsStack Overflow
版权声明:本文标题:javascript - How to parse given date string using moment.js? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743766263a2535281.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论