Capitalize the first letter of every word

前端 未结 8 1751
梦谈多话
梦谈多话 2020-12-09 17:21

I want to use a javascript function to capitalize the first letter of every word

eg:

THIS IS A TEST ---> This Is A Test
this is a TEST ---> Th         


        
8条回答
  •  醉梦人生
    2020-12-09 17:58

    function capitalizeEachWord(str)
    {
       var words = str.split(" ");
       var arr = [];
       for (i in words)
       {
          temp = words[i].toLowerCase();
          temp = temp.charAt(0).toUpperCase() + temp.substring(1);
          arr.push(temp);
       }
       return arr.join(" ");
    }
    

提交回复
热议问题