Linux中國

如何在 Bash 中抽取子字元串

本文會向你展示在 bash shell 中如何獲取或者說查找出子字元串

Bash 中抽取子字元串

其語法為:

## 格式 ## 
${parameter:offset:length} 

字元串擴展是 bash 的一項功能。它會擴展成 parameter 值中以 offset 為開始,長為 length 個字元的字元串。 假設, $u 定義如下:

## 定義變數 u ##
u="this is a test"

那麼下面參數的子字元串擴展會抽取出子字元串:

var="${u:10:4}"
echo "${var}"

結果為:

test

其中這些參數分別表示:

  • 10 : 偏移位置
  • 4 : 長度

使用 IFS

根據 bash 的 man 頁說明:

IFS (內部欄位分隔符)用於在擴展後進行單詞分割,並用內建的 read 命令將行分割為詞。默認值是。

另一種 POSIX 就緒 POSIX ready 的方案如下:

u="this is a test"
set -- $u
echo "$1"
echo "$2"
echo "$3"
echo "$4"

輸出為:

this
is
a
test

下面是一段 bash 代碼,用來從 Cloudflare cache 中去除帶主頁的 url。

#!/bin/bash
####################################################
## Author - Vivek Gite {https://www.cyberciti.biz/}
## Purpose - Purge CF cache
## License - Under GPL ver 3.x+
####################################################
## set me first ##
zone_id="YOUR_ZONE_ID_HERE"
api_key="YOUR_API_KEY_HERE"
email_id="YOUR_EMAIL_ID_HERE"

## hold data ##
home_url=""
amp_url=""
urls="$@"

## Show usage 
[ "$urls" == "" ] && { echo "Usage: $0 url1 url2 url3"; exit 1; }

## Get home page url as we have various sub dirs on domain
## /tips/
## /faq/

get_home_url(){
    local u="$1"
    IFS='/'
    set -- $u
    echo "${1}${IFS}${IFS}${3}${IFS}${4}${IFS}"
}

echo
echo "Purging cache from Cloudflare。.。"
echo
for u in $urls
do
     home_url="$(get_home_url $u)"
     amp_url="${u}amp/"
     curl -X DELETE "https://api.cloudflare.com/client/v4/zones/${zone_id}/purge_cache" 
          -H "X-Auth-Email: ${email_id}" 
          -H "X-Auth-Key: ${api_key}" 
          -H "Content-Type: application/json" 
          --data "{"files":["${u}","${amp_url}","${home_url}"]}"
     echo
done
echo

它的使用方法為:

~/bin/cf.clear.cache https://www.cyberciti.biz/faq/bash-for-loop/ https://www.cyberciti.biz/tips/linux-security.html

藉助 cut 命令

可以使用 cut 命令來將文件中每一行或者變數中的一部分刪掉。它的語法為:

u="this is a test"
echo "$u" | cut -d' ' -f 4
echo "$u" | cut --delimiter=' ' --fields=4
##########################################
## WHERE
##   -d' ' : Use a whitespace as delimiter
##   -f 4  : Select only 4th field
##########################################
var="$(cut -d&apos; &apos; -f 4 <<< $u)"
echo "${var}"

想了解更多請閱讀 bash 的 man 頁:

man bash
man cut

另請參見: Bash String Comparison: Find Out IF a Variable Contains a Substring

via: https://www.cyberciti.biz/faq/how-to-extract-substring-in-bash/

作者:Vivek Gite 譯者:lujun9972 校對:wxy

本文由 LCTT 原創編譯,Linux中國 榮譽推出


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國