上山打老虎 发表于 2021-7-22 12:10:08

js 驼峰命名和下划线互换

js 驼峰命名和下划线互换
代码走你
// 下划线转换驼峰
function toHump(name) {
    return name.replace(/\_(\w)/g, function(all, letter){
      return letter.toUpperCase();
    });
}
// 驼峰转换下划线
function toLine(name) {
return name.replace(/()/g,"_$1").toLowerCase();
}


// 测试
let a = 'a_b2_345_c2345';
console.log(toHump(a));

let b = 'aBdaNf';
console.log(toLine(b));



文档来源:51CTO技术博客https://blog.51cto.com/u_11022239/3156063
页: [1]
查看完整版本: js 驼峰命名和下划线互换