美文网首页
js驼峰转换

js驼峰转换

作者: Time_Notes | 来源:发表于2020-07-06 23:17 被阅读0次

驼峰转下划线:contentType输出content_type

//驼峰转换下划线

function camelToUnderline(str) {

  return str.replace(/([A-Z])/g,"_$1").toLowerCase();

}

//下划线转换驼峰

function underlineToCamel(str) {

    return str.replace(/\_(\w)/g, (all,letter)=>letter.toUpperCase())

}

相关文章

网友评论

      本文标题:js驼峰转换

      本文链接:https://www.haomeiwen.com/subject/fjfvphtx.html