How to get am pm from the date time string using moment js

后端 未结 2 1380
闹比i
闹比i 2020-12-10 00:11

I have a string as Mon 03-Jul-2017, 11:00 AM/PM and I have to convert this into a string like 11:00 AM/PM using moment js.

The problem here

相关标签:
2条回答
  • 2020-12-10 00:54

    You are using the wrong format tokens when parsing your input. You should use ffffd for an abbreviation of the name of day of the week, DD for day of the month, MMM for an abbreviation of the month's name, YYYY for the year, hh for the 1-12 hour, mm for minutes and A for AM/PM. See moment(String, String) docs.

    Here is a working live sample:

    console.log( moment('Mon 03-Jul-2017, 11:00 AM', 'ffffd DD-MMM-YYYY, hh:mm A').format('hh:mm A') );
    console.log( moment('Mon 03-Jul-2017, 11:00 PM', 'ffffd DD-MMM-YYYY, hh:mm A').format('hh:mm A') );
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>

    0 讨论(0)
  • 2020-12-10 01:07

    you will get the time without specifying the date format. convert the string to date using Date object

    var myDate = new Date('Mon 03-Jul-2017, 06:00 PM');
    

    working solution:

    var myDate= new Date('Mon 03-Jul-2017, 06:00 PM');
    console.log(moment(myDate).format('HH:mm')); // 24 hour format 
    console.log(moment(myDate).format('hh:mm'));
    console.log(moment(myDate).format('hh:mm A'));
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>

    0 讨论(0)
提交回复
热议问题