美文网首页
Shell 通过特定字符把字符串分割成数组

Shell 通过特定字符把字符串分割成数组

作者: 数据小白鼠 | 来源:发表于2018-06-25 14:28 被阅读0次
     #!/bin/bash
    str="1,2,3,4"
    # // 与 / 之间是分割的字符,另外 / 后有一个空格不可省略
    arr=${str//,/ }
    #遍历数组
    for each in ${arr[*]}
    do 
      echo $each
    done
    

    原文:https://blog.csdn.net/ab7253957/article/details/72818289

    相关文章

      网友评论

          本文标题:Shell 通过特定字符把字符串分割成数组

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