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?

Share Improve this question edited Aug 8, 2017 at 11:38 atiq1589 2,3271 gold badge19 silver badges25 bronze badges asked Aug 8, 2017 at 11:35 Joseph KatzmanJoseph Katzman 2,0837 gold badges24 silver badges51 bronze badges 1
  • Actually you can look at here: momentjs./docs/#/parsing/string-format – hurricane Commented Aug 8, 2017 at 11:41
Add a ment  | 

2 Answers 2

Reset to default 9

You 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