题解 | #时间格式化输出#

时间格式化输出

http://www.nowcoder.com/practice/a789783e7c984f10a0bf649f6d4e2d59

function formatDate(date, fmt){
    let dateObj = new Date(date)
    let year = dateObj.getFullYear()
    let month = dateObj.getMonth() + 1
    let dat = dateObj.getDate()
    let hours = dateObj.getHours()
    let minutes = dateObj.getMinutes()
    let sec = dateObj.getSeconds()
    let day = dateObj.getDay()

    fmt = fmt.replace(/(y+)/g,function(match,p1){

        return String(year).replace(new RegExp(`^\\d{${4-p1.length}}`,'g'),'')
    })

    fmt = fmt.replace(/(M+)/g,function(match,p1){
        return p1.length > 1 && month < 10 ? '0' + month : month
    })

    fmt = fmt.replace(/(d+)/g,function(match,p1){
        return p1.length > 1 && dat < 10 ? '0' + dat : dat
    })

    fmt = fmt.replace(/(H+)/g,function(match,p1){
        return p1.length > 1 && hours < 10 ? '0' + hours : hours
    })

    fmt = fmt.replace(/(h+)/g,function(match,p1){
       if(hours > 12){
           hours-= 12
       }
       return p1.length > 1 && hours < 10 ? '0' + hours : hours
    })

    fmt = fmt.replace(/(m+)/g,function(match,p1){
       return p1.length > 1 && minutes < 10 ? '0' + minutes : minutes
    })

    fmt = fmt.replace(/(s+)/g,function(match,p1){
       return p1.length > 1 && sec < 10 ? '0' + sec : sec
    })

    fmt = fmt.replace(/(w?)/g,function(match,p1){
       return p1 ? ['日', '一', '二', '三', '四', '五', '六'][day]:''
    })

    return fmt
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 19:05
点赞 评论 收藏
分享
CrazyBucket:我今天下午也做梦在招聘会上面试一家小厂,给自己气笑了
点赞 评论 收藏
分享
一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务