一、構造字串
直接構造
str_zero=hello
str_first="i am a string"
str_second='success'
重複多次
#repeat the first parm($1) by $2 times
strrepeat()
舉例:
str_repeat=`strrepeat "$user_name" 3`
echo "repeat = $str_repeat"
二、賦值與拷貝
直接賦值
與構造字串一樣
user_name=terry
從變數賦值
aliase_name=$user_name
三、聯接
直接聯接兩個字串
str_temp=`printf "%s%s" "$str_zero" "$user_name"`
使用printf可以進行更複雜的聯接
四、求長
求字元數(char)
count_char=`echo "$str_first" | wc -m`
echo $count_char
求位元組數(byte)
count_byte=`echo "$str_first" | wc -c`
echo $count_byte
求字數(word)
count_word=`echo "$str_first" | wc -w`
echo $count_word
五、比較
相等比較
str1 = str2
不等比較
str1 != str2
舉例:if [ "$user_name" = "terry" ]; then
echo "i am terry" fi
小於比較
#return 0 if the two string is equal, return 1 if $1 < $2, else2strcompare()
六、測試判空
-z str
判非空-n str
是否為數字
# return 0 if the string is num, otherwise 1
strisnum()
舉例:
if [ -n "$user_name" ]; then
echo "my name is not empty" fi
echo `strisnum "9980"`
七、分割
以符號+為準,將字元分割為左右兩部分
使用sed
舉例:命令 date --rfc-3339 seconds 的輸出為
2007-04-14 15:09:47+08:00
取其+左邊的部分
date --rfc-3339 seconds | sed 's/+[0-9][0-9]:[0-9][0-9]//g'
輸出為2007-04-14 15:09:47
取+右邊的部分
date --rfc-3339 seconds | sed 's/.*+//g'
輸出為08:00
以空格為分割符的字串分割
使用awk
舉例:str_fruit="banana 0.89 100"
取第3欄位
echo $str_fruit | awk ''
八、子字串
字串1是否為字串2的子字串
# return 0 is $1 is substring of $2, otherwise 1
strissubstring()
一、linux shell 擷取字元變數的前8位,有方法如下:
1.expr substr 「$a」 1 8
2.echo $a|awk 『』
3.echo $a|cut -c1-8
4.echo $
5.expr $a : 『/(.//).*』
6.echo $a|dd bs=1 count=8 2>/dev/null
二、按指定的字串擷取
1、第一種方法:
「*」只是乙個萬用字元可以不要
例子:$ myvar=foodforthought.jpg
2、第二種方法:$:擷取變數varible從n1到n2之間的字串。
可以根據特定字元偏移和長度,使用另一種形式的變數擴充套件,來選擇特定子字串。試著在 bash 中輸入以下行:
$ exclaim=cowabunga
$ echo $
cow$ echo $
abunga
這種形式的字串截斷非常簡便,只需用冒號分開來指定起始字元和子字串長度。
三、按照指定要求分割:
比如獲取字尾名
ls -al | cut -d 「.」 -f2
shell 字串處理
一 號擷取,刪除左邊字元,保留右邊字元。echo 其中 var 是變數名,號是運算子,表示從左邊開始刪除第乙個 號及左邊的所有字元 即刪除 http 結果是 www.google.com test.htm 二 號擷取,刪除左邊字元,保留右邊字元。echo 表示從左邊開始刪除最後 最右邊 乙個 號及左...
SHELL字串處理
linux 的字串擷取很有用。有八種方法。假設有變數 var 1.號擷取,刪除左邊字元,保留右邊字元。複製 如下 echo 其中 var 是變數名,號是運算子,表示從左邊開始刪除第乙個 號及左邊的所有字元 即刪除 http 結果是 www.aaa.com 123.htm 2.號擷取,刪除左邊字元,保...
shell字串處理
一 求字串長度 格式如下 1.2.expr length string 二 字串索引 格式如下 expr index string substring 注 expr索引命令的功能是在字串 string上匹配 substring中字元第一次出現的位置,若在 string上匹配不到 substring中...