admin管理员组文章数量:1348108
How can I transform the string "8/3/2017 6:12:00 AM"
to "2017-08-03T06:12:00.000"
by using standard JavaScript or moment.js
library?
How can I transform the string "8/3/2017 6:12:00 AM"
to "2017-08-03T06:12:00.000"
by using standard JavaScript or moment.js
library?
- Actually you can look at here: momentjs./docs/#/parsing/string-format – hurricane Commented Aug 8, 2017 at 11:41
2 Answers
Reset to default 9You can convert 8/3/2017 6:12:00 AM
to 2017-08-03T06:12:00.000
using moment the following way:
moment("8/3/2017 6:12:00 AM", 'DD/MM/YYYY HH:mm:ss a').format('YYYY-DD-MMTHH:mm:ss.000')
console.log(moment("8/3/2017 6:12:00 AM", 'DD/MM/YYYY HH:mm:ss a').format('YYYY-DD-MMTHH:mm:ss.000'))
<script src="https://cdnjs.cloudflare./ajax/libs/moment.js/2.18.1/moment.js"></script>
if you know what format you are getting then i suggest to parse and create an js date object. and then
var year = 2017;
var month = 2;
var day = 8;
var date = new Date(year, month, day);
console.log(date.toISOString());
Updated:
console.log(moment("8/3/2017 6:12:00 AM", 'DD/MM/YYYY HH:mm:ss a').format('YYYY-DD-MMTHH:mm:ss.000'))
<script src="https://cdnjs.cloudflare./ajax/libs/moment.js/2.18.1/moment.min.js"></script>
本文标签: javascriptMomentjs How to convert MMddyyyy HHmmssfff to roundtrip datetime patternStack Overflow
版权声明:本文标题:javascript - Moment.js How to convert MMddyyyy HH:mm:ss.fff to round-trip datetime pattern? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743845057a2548967.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论