shell script 在if 的判斷條件Regex=~中引號問題

來源:互聯網
上載者:User

標籤:script   ...   advance   操作符   googl   錯誤   shel   uid   否則   

今天在指令碼裡運行if判斷的時候,總是進不了對應的分支,檢查Regex也沒有錯誤。單獨拿到shell裡面執行還是顯示沒有匹配。比較奇怪,就搜了下,才發現是在=~ 後面的Regex上不能加上引號,而且以點代表任一字元,最後面是不能加上(.)*來匹配接完的。

 

下面是搜到的部分資訊:

一個匹配ip地址的測試,結果匹配不了:

newip=‘192.168.1.1‘if [[ "$newip" =~ ‘^([0-9]{1,3}\.){3}[0-9]{1,3}$‘ ]];then    echo ‘找到了ip地址‘fi

翻遍了google中的中文資料,都沒發現問題。最後終於用英文搜到《Advanced Bash-Scripting Guide》中的一篇介紹Bash版本的文章,其中寫道:

The =~ Regular Expression match operator no longer requires quoting
of the pattern within [[ … ]].

把測試條件換成下面這樣就成功了。

if [[ "$newip" =~ ^([0-9]{1,3}.){3}[0-9]{1,3}$ ]];then    ....fi

使用變數的時候,是可以使用引號的:

newip=‘192.168.1.100‘reg=‘^([0-9]{1,3}.){3}[0-9]{1,3}$‘if [[ "$newip" =~ $reg ]];then    echo ‘找到了ip地址‘fi

但是,對於 $reg 這個變數,在 [[]] 操作符中,就不能加上雙引號,否則也會不匹配。

shell script 在if 的判斷條件Regex=~中引號問題

相關文章

聯繫我們

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