码迷,mamicode.com
首页 > 其他好文 > 详细

转化为小驼峰式

时间:2020-04-05 11:42:36      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:ret   ons   function   多少   驼峰   cti   turn   $2   UNC   

 <!--the-first-name   变成the-First-Name-->
  <!--1.先匹配-f-->
  <!--2.字符串-->
  <script type="text/javascript">
   var reg = /-(\w)/g;
   var str = "the-first-name";
//   console.log(str.replace(reg,"*"));
//   匹配多少次,function就执行多少次
   console.log(str.replace(reg,function ($,$1,$2){      //用$,$1,$2来接受
        return  $1.toUpperCase();
   }));
  </script>
  

转化为小驼峰式

标签:ret   ons   function   多少   驼峰   cti   turn   $2   UNC   

原文地址:https://www.cnblogs.com/weixin2623670713/p/12636165.html

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