shell 數組使用,好,留著以後學習

來源:互聯網
上載者:User

不知道 是什麼時候寫的東西,整理文檔時被考古發現,給那些閑著蛋疼之人,一笑而過吧。如果本文中的錯誤給您帶來所有的精神損失,請找保險公司理陪!當然你可以告訴我 (傾訴)

數組作為一種特殊的{
function onclick()
{
function onclick()
{
function onclick()
{
tagshow(event)
}
}
}
}">資料結構在任何一種程式設計語言中都有它的一席之地,當然bash {
function onclick()
{
function onclick()
{
function onclick()
{
tagshow(event)
}
}
}
}">shell也不例外。本文就shell數組來做一個小的總結。
在這裡只討論一維數組的情況,關於多維陣列(事實上,你得用一維數組的方法來類比),不涉及。這裡包括數組的複製,計算,刪除,替換。

數組的聲明:

  1. 1)array[key]=value # array[0]=one,array[1]=two

複製代碼

  1. 2)declare -a array # array被當作數組名

複製代碼

  1. 3)array=( value1 value2 value3 ... )

複製代碼

  1. 4)array=( [1]=one [2]=two [3]=three ... )

複製代碼

  1. 5)array="one two three" # echo ${array[0|@|*]},把array變數當作數組來處理,但數組元素只有字串本身

複製代碼

數組的訪問:

  1. 1)${array[key]} # ${array[1]}

複製代碼

數組的刪除

  1. 1)unset array[1] # 刪除數組中第一個元素

複製代碼

  1. 2)unset array # 刪除整個數組

複製代碼

計算數組的長度:

  1. 1)${#array}

複製代碼

  1. 2)${#array[0]} #同上。 ${#array[*]} 、${#array[@]}。注意同#{array:0}的區別

複製代碼

數組的提取
從尾部開始提取:
array=( [0]=one [1]=two [2]=three [3]=four )
${array[@]:1} # two three four,除掉第一個元素後所有元素,那麼${array[@]:0}表示所有元素
${array[@]:0:2} # one two
${array[@]:1:2} # two three

子串刪除

  1. [root@localhost dev]# echo ${array[@]:0}
  2. one two three four

複製代碼

  1. [root@localhost dev]# echo ${array[@]#t*e} # 左邊開始最短的匹配:"t*e",這將匹配到"thre"
  2. one two e four

複製代碼

  1. [root@localhost dev]# echo ${array[@]##t*e} # 左邊開始最長的匹配,這將匹配到"three"

複製代碼

  1. [root@localhost dev]# array=( [0]=one [1]=two [2]=three [3]=four )

複製代碼

  1. [root@localhost dev]# echo ${array[@] %o} # 從字串的結尾開始最短的匹配
  2. one tw three four

複製代碼

  1. [root@localhost dev]# echo ${array[@] %%o} # 從字串的結尾開始最長的匹配
  2. one tw three four

複製代碼

子串替換

  1. [root@localhost dev]# array=( [0]=one [1]=two [2]=three [3]=four )

複製代碼

第一個匹配到的,會被刪除

  1. [root@localhost dev]# echo ${array[@] /o/m}
  2. mne twm three fmur

複製代碼

所有匹配到的,都會被刪除

  1. [root@localhost dev]# echo ${array[@] //o/m}
  2. mne twm three fmur

複製代碼

沒有指定替換子串,則刪除匹配到的子符

  1. [root@localhost dev]# echo ${array[@] //o/}
  2. ne tw three fur

複製代碼

替換字串前端子串

  1. [root@localhost dev]# echo ${array[@] /#o/k}
  2. kne two three four

複製代碼

替換字串後端子串

  1. [root@localhost dev]# echo ${array[@] /%o/k}
  2. one twk three four
複製代碼 $ arr=(123 34 3 5)
$ echo $arr // 預設擷取第一個元素
> 123
$ echo ${arr[1]} // 通過下標訪問
> 34
$ echo ${arr[@]}     // 訪問整個數組 ,@或者* 擷取整個數組
> 123 34 3 5
$ echo ${#arr[@]}   // 擷取數組的長度(最大下標) ,#擷取長度 數組中是最後一個下標
> 3
$ echo ${#arr[3]}   // 擷取字串長度
> 1
$ echo ${arr[@]:1:2} // 切片方式擷取一部分數組內容
> 34 3
$ echo ${arr[@]:2} // 從第二個元素開始
> 3 5
$ echo ${arr[@]::2} // 到第二個元素
> 123 34
參考 http://www.tech-recipes.com/rx/642/bash-shell-script-accessing-array-variables/
array 的類比操作
– http://www.tech-recipes.com/rx/911/queue-and-stack-using-array/
push:
array=(”${array[@]}” $new_element)
pop:
array=(${array[@]:0:$((${#array[@]}-1))})
shift:
array=(${array[@]:1})
unshift
array=($new_element “${array[@]}”)
function del_array {
local i
for (( i = 0 ; i < ${#array[@]} ; i++ ))
dos
if [ "$1" = "${array[$i]}” ] ;then
break
fi
done
del_array_index $i
}
function del_array_index {
array=(${array[@]:0:$1} ${array[@]:$(($1 + 1))})
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.