shell字符串操作小结
在写shell脚本时,经常会涉及到字符串相关操作。有很多命令语句,如:awk,sed都可以做字符串各种操作。 其实shell内置一系列操作符号,可以达到类似效果,大家知道,使用内部操作符会省略启动外部程序的等待时间,因此速度会非常的快。
一、判断读取字符串值
表达式 | 含义 |
---|---|
${var} | 变量var的值,与$var相同 |
${var-DEFAULT} | 如果var没有被声明,那么就以$DEFAULT作为其值 * |
${var:-DEFAULT} | 如果var没有被声明,或者其值为空, 那么就以$DEFAULT作为其值 * |
${var=DEFAULT} | 如果var没有被声明,那么就以$DEFAULT作为其值 * |
${var:=DEFAULT} | 如果var没有被声明,或者其值为空, 那么就以$DEFAULT作为其值 * |
${var+OTHER} | 如果var声明了,那么其值就是$OTHER, 否则就为null字符串 |
${var:+OTHER} | 如果var被设置了,那么其值就是$OTHER, 否则就为null字符串 |
${var?ERR_MSG} | 如果var没被声明,那么就打印$ERR_MSG * |
${var:?ERR_MSG} | 如果var没被设置,那么就打印$ERR_MSG * |
${!varprefix*} | 匹配之前所有以varprefix开头进行声明的变量 |
${!varprefix@} | 匹配之前所有以varprefix开头进行声明的变量 |
当然, 如果变量var已经被设置的话, 那么其值就是$var。以下是部分示例:
1[root@localhost ~]$ echo ${abc-'ok'}
2ok
3[root@localhost ~]$ echo $abc
4[root@localhost ~]$ echo ${abc='ok'}
5ok
6[root@localhost ~]$ echo $abc
7ok
8//如果abc 没有声明“=" 还会给abc赋值。
${!varprefix*}与${!varprefix@}
相似,可以通过变量名前缀字符,搜索已经定义的变量,无论是否为空值。
1[root@localhost ~]$ var1=11;var2=12;var3=
2[root@localhost ~]$ echo ${!v@}
3var1 var2 var3
4[root@localhost ~]$ echo ${!v*}
5var1 var2 var3
二、字符串操作(长度,读取,替换)
表达式 | 含义 |
---|---|
${#string} | $string的长度 |
${string:position} | 在$string中,从位置$position开始提取子串 |
${string:position:length} | 在$string中,从位置$position开始提取长度为$length的子串 |
${string#substring} | 从变量$string的开头,删除最短匹配$substring的子串 |
${string##substring} | 从变量$string的开头,删除最长匹配$substring的子串 |
${string%substring} | 从变量$string的结尾,删除最短匹配$substring的子串 |
${string%%substring} | 从变量$string的结尾,删除最长匹配$substring的子串 |
${string/substring/replacement} | 使用$replacement,来代替第一个匹配的$substring |
${string//substring/replacement} | 使用$replacement,代替所有匹配的$substring |
${string/#substring/replacement} | 如果$string的前缀匹配$substring,那么就用$replacement来代替匹配到的$substring |
${string/%substring/replacement} | 如果$string的后缀匹配$substring,那么就用$replacement来代替匹配到的$substring |
说明:”* $substring”可以是一个正则表达式 。
1、长度处理示例:
1[root@361way ~]$ test='I love china'
2[root@361way ~]$ echo ${#test}
312
4${#变量名}得到字符串长度
2、截取字符串示例
1[root@localhost ~]$ test='I love china'
2[root@localhost ~]$ echo ${test:5}
3e china
4[root@localhost ~]$ echo ${test:5:10}
5e china
6${变量名:起始:长度}得到子字符串
3、字符串删除示例
1[root@localhost ~]$ test='c:/windows/boot.ini'
2[root@localhost ~]$ echo ${test#/}
3c:/windows/boot.ini
4[root@localhost ~]$ echo ${test#*/}
5windows/boot.ini
6[root@localhost ~]$ echo ${test##*/}
7boot.ini
8[root@localhost ~]$ echo ${test%/*}
9c:/windows
10[root@localhost ~]$ echo ${test%%/*}
${变量名#substring正则表达式}从字符串开头开始配备substring,删除匹配上的表达式;${变量名%substring正则表达式}从字符串结尾开始配备substring,删除匹配上的表达式。
注:${test##/},${test%/} 分别是得到文件名,或者目录地址最简单方法。
4、字符串替换
1[root@localhost ~]$ test='c:/windows/boot.ini'
2[root@localhost ~]$ echo ${test///\}
3c:windows/boot.ini
4[root@localhost ~]$ echo ${test////\}
5c:windowsboot.ini
${变量/查找/替换值} 一个“/”表示替换第一个,”//”表示替换所有,当查找中出现了:”/”请加转义符”/”表示。
三、性能对比
在shell中,通过awk,sed,expr 等都可以实现,字符串上述操作。下面我们进行性能比较。
1[root@localhost ~]$ test='c:/windows/boot.ini'
2[root@localhost ~]$ time for i in $(seq 10000);do a=${#test};done;
3real 0m0.173s
4user 0m0.139s
5sys 0m0.004s
6[root@localhost ~]$ time for i in $(seq 10000);do a=$(expr length $test);done;
7real 0m9.734s
8user 0m1.628s
速度相差上百倍,调用外部命令处理,与内置操作符性能相差非常大。在shell编程中,尽量用内置操作符或者函数完成。使用awk,sed类似会出现这样结果。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/shell-string/2846.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.