为了能到远方,脚下的每一步都不能少.|

岁月记忆

园龄:3年8个月粉丝:2关注:3

js 驼峰与下划线互转

复制代码
/**
     * 驼峰转下划线
     */
    function replaceUppercaseWithUnderscoresAndLowercase (str) {
      return str.replace(/[A-Z]/g, (match) => `_${match.toLowerCase()}`)
    }

    const originalStr = "helloWorld";
    const replacedStr = replaceUppercaseWithUnderscoresAndLowercase(originalStr);
    console.log(replacedStr); // 输出: "hello_world"
    /**
     * 下划线转驼峰
     */
    function replaceUnderscoresAndLowercaseWithUppercase(str) {
      return str.replace(/_[a-z]/g, match => match.toUpperCase()).replace("_","");
    }
    
    const originalStr = "hello_world";
    const replacedStr = replaceUnderscoresAndLowercaseWithUppercase(originalStr);
    console.log(replacedStr); // 输出: "helloWorld"
复制代码

 

本文作者:岁月记忆

本文链接:https://www.cnblogs.com/huang2979127746/p/18571713

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

posted @   岁月记忆  阅读(23)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起