美文网首页
shell 字符串书写格式 驼峰与下划线互转

shell 字符串书写格式 驼峰与下划线互转

作者: 灰fw | 来源:发表于2022-08-11 11:12 被阅读0次
    #!/bin/bash
    
    serviceName=$1
    
    #驼峰转下划线
    a=`(echo $serviceName | sed 's/[A-Z]/_\l&/g')`
    
    echo $a
    
    #下划线转驼峰
    a=`(echo $serviceName | sed 's/_\([a-z]\)/\u\1/g')`
    
    echo $a
    
    

    实例如下入:


    change.jpg

    相关文章

      网友评论

          本文标题:shell 字符串书写格式 驼峰与下划线互转

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