Title case a sentence?

后端 未结 13 1448
醉梦人生
醉梦人生 2021-02-10 01:27

I\'m trying to proper case a string in javascript - so far I have this code: This doesn\'t seem to capitalize the first letter, and I\'m also stuck on how to lowercase all the l

13条回答
  •  孤独总比滥情好
    2021-02-10 01:40

    First all become lowercase, and then open each word, and then open each letter, the first letter set capital, and then together

    function titleCase(str) {
      var copy=str;
      copy=copy.toLowerCase();
      copy=copy.split(' ');
      for(var i=0;i

提交回复
热议问题