shell 分割字串存至數組

來源:互聯網
上載者:User

shell編程中,經常需要將由特定分割符分割的字串分割成數組,多數情況下我們首先會想到使用awk
但是實際上用shell內建的分割數組功能會更方便。假如
a=”one,two,three,four”

要將$a分割開,可以這樣:
OLD_IFS=”$IFS”
IFS=”,”
arr=($a)
IFS=”$OLD_IFS”
for s in ${arr[@]}
do
echo “$s”
done

上述代碼會輸出
one
two
three
four

arr=($a)用於將字串$a分割到數組$arr ${arr[0]} ${arr[1]} … 分別儲存分割後的數組第1 2 … 項 ,${arr[@]}儲存整個數組。變數$IFS儲存著分隔字元,這裡我們將其設為逗號 “,” OLD_IFS用於備份預設的分隔字元,使用完後將之恢複預設。



對檔案中的字串切割放到數組中

7481|1|1359475743|1014|1|14.223.145.61:1609
7482|1|1359475752|1014|3|14.223.145.61:1609
7483|1|1359475754|3544|1|121.61.222.187:2971
7484|1|1359475758|11541|3|183.187.51.156:2582

filename='aa.log'   #檔案路徑
OLD_IFS="$IFS"
IFS="|"
i=0
if [ -f ${filename} ];then
   while read line
   do
     arr=($line)
     echo ${arr[0]}_${arr[1]}_${arr[2]}_${arr[3]}_${arr[4]}_${arr[5]}_${i}
     i=$((i+1))
   done < ${filename}
fi

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.