1. 程式人生 > >Shell程式設計-10-Shell中的陣列

Shell程式設計-10-Shell中的陣列

目錄

    如果大家有其他語言的基礎或經驗,就很快能明白陣列了。簡單來說,陣列就某一種相同型別的元素組合,而後通過下標對其進行訪問各元素。

陣列基礎

基礎語法

  • 第一種形式
 array=(value1 value2 value3 ...)
  • 第二種形式
array=([0]=value1 [1]=value2 [2]=value3 ...)

在以上形式中中括號代表的陣列的下標索引,等號後面為其對應的值。

  • 第三種形式
array[0]=value1;array[1]=value2;array[2]=value3
  • 第四種形式:動態陣列
array=($(命令))

array=(`命令`)

在日常使用中推薦大家使用第一種形式和第四種形式

陣列示例

  • 第一種形式
[[email protected] Test]# array=(1 3 5)
[[email protected] Test]# echo ${array[*]}
1 3 5
  • 第二種形式
[[email protected] Test]# array=([0]=1 [1]=3 [2]=5)
[[email protected] Test]# echo ${array[*]}
1 3 5
  • 第三種形式
[[email protected] Test]# array[0]=1;array[1]=3;array[2]=5
[[email protected] Test]# echo ${array[*]}
1 3 5
  • 第四種形式:動態陣列
[[email protected] Test]# array=($(ls))
[[email protected] Test]# echo ${array[*]}
break.sh caseif.sh case.sh compareNum.sh

[[email protected]
Test]# array=(`ls`) [[email protected] Test]# echo ${array[*]} break.sh caseif.sh case.sh compareNum.sh

陣列輸出

  陣列輸出通過採用下標索引的形式進行輸出,輸出陣列的格式如下所示:

${ 陣列名稱 [下標索引] }

**如未指定陣列下標,則預設下標索引從0開始;如果使用*或@則代表輸出整個陣列元素**。

[[email protected] Test]# array=(1 3 5)
[[email protected] Test]# echo ${array[2]} # 輸出第3個元素
5
[[email protected] Test]# echo ${array}    # 未指定下標輸出第1個元素
1
[[email protected] Test]# echo ${array[*]} #  使用 * 輸出整個陣列元素
1 3 5
[[email protected] Test]# echo ${array[@]} #  使用 @ 輸出整個陣列元素
1 3 5

陣列長度

  輸出數長度常用格式如下所示:

${ #陣列名稱 [*] }
或
${ #陣列名稱 [@] }

示例如下所示:

[[email protected] Test]# array=(1 3 5)
[[email protected] Test]# echo ${#array[*]}
3
[[email protected] Test]# echo ${#array[@]}
3

陣列賦值

  可通過陣列名[下標索引]對陣列進行賦值,其格式如下所示:

陣列名[下標索引]=value
  • 如果下標不存在,則自動向陣列新增一個新的元素值
  • 如果下標存在,則會覆蓋先前的元素值

示例如下所示:

[[email protected] Test]# array=(1 3 5)
[[email protected] Test]# array[2]=100  # 下標存在,覆蓋之前的元素
[[email protected] Test]# array[5]=888  # 下標不存在,則自動新增一個新的元素值
[[email protected] Test]# echo ${array[*]}
1 3 100 888
[[email protected] Test]# echo ${#array[@]}
4

陣列刪除

  陣列本質上還是一種變數,因此通過使用unset進行清除陣列元素。其語法格式如下所示:

unset 陣列名稱[下標索引]

如果不帶下標索引,則表示清除整個陣列,需要注意與輸出陣列元素不帶下標索引的區別

示例如下所示:

[[email protected] Test]# array=(1 3 5 7 9)
[[email protected] Test]# echo ${array[@]}
1 3 5 7 9
[[email protected] Test]# unset array[1] # 清除陣列中第2個元素
[[email protected] Test]# echo ${array[@]}
1 5 7 9
[[email protected] Test]# unset array    # 清除整個陣列
[[email protected] Test]# echo ${array[@]}
                                      # 清除陣列後,輸出為空

陣列刪除擴充套件方法

[[email protected] Test]# b=(a b c d e f g h i)
[[email protected] Test]# echo ${b[*]}
a b c d e f g h i
[[email protected] Test]# echo ${b[*]#a*}  # 從左邊開始匹配最短的陣列元素並刪除
b c d e f g h i
[[email protected] Test]# echo ${b[*]##b*} # 從左邊開始匹配最長的陣列元素並刪除
a c d e f g h i
[[email protected] Test]# echo ${b[*]%i*}  # 從右邊開始匹配最短的陣列元素並刪除
a b c d e f g h
[[email protected] Test]# echo ${b[*]%%g*} # 從右邊開始匹配最長的陣列元素並刪除
a b c d e f h i
[[email protected] Test]# echo ${b[*]}     # 該刪除並不影響原陣列的內容
a b c d e f g h i

陣列從某種意義上來說,就是一種特殊的字元變數,因此也適合前面講的子符串處理的功能。

陣列擷取與替換

  陣列的擷取示例如下所示:

[[email protected] Test]# a=($(echo {0..9}))
[[email protected] Test]# echo ${a[*]}
0 1 2 3 4 5 6 7 8 9
[[email protected] Test]# echo ${a[*]:1:3} # 擷取下標索引1~3的元素
1 2 3
[[email protected] Test]# echo ${a[*]:0:2}# 擷取下標索引0~2的元素
0 1

  陣列的替換格式如下所示:

${ 陣列名[*/@]/查詢字元/替換字元 }

該替換操作並不會改變原先的陣列內容

  陣列的替換示例如下所示:

[[email protected] Test]# echo ${a[*]}
0 1 2 3 4 5 6 7 8 9
[[email protected] Test]# echo ${a[*]/4/456} # 將4替換為456
0 1 2 3 456 5 6 7 8 9
[[email protected] Test]# echo ${a[*]}
0 1 2 3 4 5 6 7 8 9

陣列示例

1、使用迴圈列印陣列元素

[[email protected] Test]# cat array.sh
#!/bin/bash
array=($(echo {0..5}))
echo "first method"
for((i=0;i<${#array[*]};i++)) # 類C風格的for迴圈
  do
    echo ${i}
  done

echo "second method"
for ele in ${array[*]}  # for in 迴圈
 do
   echo ${ele}
 done

[[email protected] Test]# bash array.sh
first method
0
1
2
3
4
5
second method
0
1
2
3
4
5

陣列總結

  • 1、陣列定義
array=(1 2 3) # 靜態陣列
array=($(ls)) # 動態陣列
  • 2、陣列賦值
array[3]=5
  • 3、陣列刪除
unset array[3]
  • 4、陣列輸出
 ${array[*]}或${array[@]} # 輸出陣列全部內容
 ${array[1]}              # 輸出陣列單個元素
  • 5、陣列長度
 ${#array[*]}或${#array[@]} # 輸出陣列長度
  • 6、迴圈輸出陣列元素
for((i=0;i<${#array[*]};i++))
  do
    echo ${i}
  done
或
for ele in ${array[*]}
 do
   echo ${ele}
 done

本文同步在微信訂閱號上釋出,如各位小夥伴們喜歡我的文章,也可以關注我的微信訂閱號:woaitest,或掃描下面的二維碼新增關注:
MyQRCode.jpg