shell 字串操作小結

來源:互聯網
上載者:User

標籤:style   blog   http   color   使用   檔案   

 shell 字串操作小結 

#!/bin/bash

##########################################
#
#   示範bash中操作字串的操作
#
#   後面是輸出結果
#
##########################################

str="abc123abcABC"
#    |-|
#    |-------|

#計算字串的長度 
echo ${#str}    #12

#位置參數有關操作
echo ${#*}      #位置參數的個數
echo ${#@}      #位置參數的個數和上面的效果一樣
echo $*         #把所有的位置參數作為一個字串輸出
echo [email protected]         #效果同上
#字串截取
#
#    ${string#substring}
#         從$string的左邊第一個字元截掉第一個匹配的$substring
#    ${string##substring}
#         從$string的左邊第一個字元截掉最後一個個匹配的$substring
#
#從左邊開始
echo ${str#a*c} #a到c的最短匹配
echo ${str##a*c} #a到c的最長相符

#從右邊開始
echo ${str%a*C}     #從右邊的最後一個字元開始尋找a到B的最短匹配
echo ${str%%a*B}    #從右邊最後一個字元開始尋找a到B的最長相符
                    #這裡找不到模式

#==取子串==
#   ${string:position}
#   ${string:positon:length}
#
echo ${str:2}       #從第2個位置開始提取字串的值
echo ${str:2:3}     #從第2個位置開始提取長度為3個字元的值
#反向提取子串
echo ${str:(-2)}        #從反向的第2個位置開始提取字串
echo ${str:(-2):6}      #從反向的第2個字元的位置開始提取長度為6個字元的串(:(不可能把)
                        #總共的字元長度只有2個怎麼提取6個呢呵呵
echo ${str:(-6):3}      #6個中提出3個總可以了把

#位置參數的提取

echo ${*:2}         #從第二個位置參數開始提取後面所有位置參數的值
echo ${*:2:3}           #從第二個位置參數開始提取3個位置參數的值

#=子串替換=
# ${string/substring/replacement}
#   使用$replacement來替換第一個匹配的$substring.
# ${string//substring/replacement}
#   使用$replacement來替換所有匹配的$substring.
#
# ${string/#substring/replacement}
#   如果$substring匹配$string的開頭部分,那麼就用$replacement來替換$substring.
# ${string/%substring/replacement}
#   如果$substring匹配$string的結尾部分,那麼就用$replacement來替換$substring.
#
str1="123abcABCab12"

echo ${str1/12/hover}   #僅僅替換了第一個
echo ${str1//12/hover}  #替換了所有的

echo ${str1/#12/hover}  # 從頭開始匹配12,如果找到做替換
echo ${str1/%12/hover}  # 從尾開始匹配12,如果找到做替換

######################################################3

字串單個賦值到數組:

[email protected] ~
$ str=abcdefg

[email protected] ~
$ i=0;while((i<${#str}));do array[$i]=${str:i:1};((i++));done

[email protected] ~
$ set|grep array
array=([0]="a" [1]="b" [2]="c" [3]="d" [4]="e" [5]="f" [6]="g" [7]="")

[email protected] ~
$ echo ${array[0]}
a

[email protected] ~
$ echo ${array[1]}
b

[email protected] ~
$ echo ${array[@]}
a b c d e f g


for index in `seq 0 $((${#str}-1))`
do
array[$index]=${str:$index:1}
done

 

 

 

shell 字串數組處理

這段代碼用來處理系統中的某個程式(指令碼)的調用,但是又不知道這個程式檔案的具體位置,只是知道可能存在的位置。有點智能的味道哦。


  exp_cmds="$BASE_DIR/$old_version/bin/exp_my_db /
            $BASE_DIR/$old_version/bin/exp_db /
            $BASE_DIR/$VERSION/bin/exp_db /
            $BASE_DIR/$old_version/my/scripts/exp_my_db /
            $BASE_DIR/$old_version/my/scripts/exp_db /
            $BASE_DIR/$VERSION/my/scripts/exp_db"      #構造字串數組,用符號 / 隔開的哦

  exp_cmd_found=0

  for cmd in $exp_cmds   #用for  來迴圈取哦
  do
      if [ -f $cmd ]  #存在exp_db 或則exp_my_db這個指令檔
      then
      echo "Exporting database ... "
      run_as_oracle_nolog $cmd 100 $MY_BACKUP_DIR 2>&1 | $TEE -a $TMP_FILE  #核心程式
      exp_cmd_found=1
          break  #哈哈找到了一個,完成功能就立刻退出去哦
      fi
  done

麻雀雖小,啟發很大

相關文章

聯繫我們

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