【Shell指令碼學習12】Shell字串

來源:互聯網
上載者:User

標籤:

字串是shell編程中最常用最有用的資料類型(除了數字和字串,也沒啥其它類型好用了),字串可以用單引號,也可以用雙引號,也可以不用引號。單雙引號的區別跟PHP類似。

單引號
  1. str=‘this is a string‘

單引號字串的限制:

  • 單引號裡的任何字元都會原樣輸出,單引號字串中的變數是無效的;
  • 單引號字串中不能出現單引號(對單引號使用轉義符後也不行)。
雙引號
  1. your_name=‘qinjx‘
  2. str="Hello, I know your are \"$your_name\"! \n"

雙引號的優點:

  • 雙引號裡可以有變數
  • 雙引號裡可以出現逸出字元
拼接字串
your_name="qinjx"greeting="hello, "$your_name" !"greeting_1="hello, ${your_name} !"echo $greeting $greeting_1
擷取字串長度
  1. string="abcd"
  2. echo ${#string} #輸出 4
提取子字串
  1. string="alibaba is a great company"
  2. echo ${string:1:4} #輸出liba
尋找子字串
  1. string="alibaba is a great company"
  2. echo `expr index "$string" b` #輸出4

expr  參數:用法 : expr index 字串 字元        在字串中發現字元的地方建立下標,或者標0

         expr length 字串            字串的長度
         expr substr 字串 位移量 長度    替換字串的子串,位移的數值從 1 起計


 

【Shell指令碼學習12】Shell字串

相關文章

聯繫我們

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