Capitalize the first letter of every word

前端 未结 8 1749
梦谈多话
梦谈多话 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 18:08

    This will capitalize every word seperated by a space or a dash

    function capitalize(str){
        str = str.toLowerCase();
        return str.replace(/([^ -])([^ -]*)/gi,function(v,v1,v2){ return v1.toUpperCase()+v2; });
    }
    

    Examples :

    • i lOvE oRanges => I Love Oranges
    • a strAnge-looKing syntax => A Strange-Looking Syntax

    etc

提交回复
热议问题