标签: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