shell字串的截取

來源:互聯網
上載者:User

Linux shell 截取字元變數的前8位,有方法如下:
1.expr substr “$a” 1 8
2.echo $a|awk ‘{print substr(,1,8)}’
3.echo $a|cut -c1-8
4.echo $
5.expr $a : ‘/(.//).*’
6.echo $a|dd bs=1 count=8 2>/dev/null

 

 

按指定的字串截取
1、第一種方法:
${varible##*string} 從左向右截取最後一個string後的字串
${varible#*string}從左向右截取第一個string後的字串
${varible%%string*}從右向左截取最後一個string後的字串
${varible%string*}從右向左截取第一個string後的字串
“*”只是一個萬用字元可以不要

例子:
$ MYVAR=foodforthought.jpg
$ echo ${MYVAR##*fo}
rthought.jpg
$ echo ${MYVAR#*fo}
odforthought.jpg

2、第二種方法:${varible:n1:n2}:截取變數varible從n1到n2之間的字串。

可以根據特定字元位移和長度,使用另一種形式的變數擴充,來選擇特定子字串。試著在 bash 中輸入以下行:
$ EXCLAIM=cowabunga
$ echo ${EXCLAIM:0:3}
cow
$ echo ${EXCLAIM:3:7}
abunga

這種形式的字串截斷非常簡便,只需用冒號分開來指定起始字元和子字串長度。

 

 

按照指定要求分割:
比如擷取尾碼名
ls -al | cut -d “.” -f2

相關文章

聯繫我們

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