码迷,mamicode.com
首页 > Web开发 > 详细

JS正则表达式:全文单词首字母大写

时间:2017-08-15 23:05:22      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:js

JS正则表达式:全文单词首字母大写

function ReplaceFirstUper(str)  
{     
    str = str.toLowerCase();     
    return str.replace(/\b(\w)|\s(\w)/g, function(m){  
        return m.toUpperCase();  
    });    
}

console.log(ReplaceFirstUper(‘i have a pen, i have an apple!‘));


JS正则表达式:全文单词首字母大写

标签:js

原文地址:http://13136447.blog.51cto.com/13126447/1956568

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!