Linux shell 字符串操作总结
1.判断读取字符串值
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?ERRMSG如果var没被声明,那么就打印ERR_MSG *
var:?ERRMSG如果var没被设置,那么就打印ERR_MSG *
!varprefix∗匹配之前所有以varprefix开头进行声明的变量{!varprefix@} 匹配之前所有以varprefix开头进行声明的变量
字符串操作
{#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
1.长度
[web97@salewell97 ~]test=′Ilovechina′[web97@salewell97 ] echo ${#test}
12
${#变量名}得到字符串长度
2.截取字串
[chengmo@localhost ~]test=′Ilovechina′[chengmo@localhost ] echo test:5echina[chengmo@localhost ] echo ${test:5:10}
e china
${变量名:起始:长度}得到子字符串
3.字符串删除
[chengmo@localhost ~]test=′c:/windows/boot.ini′[chengmo@localhost ] echo {test#/}
c:/windows/boot.ini
[chengmo@localhost ~] echo {test#*/}
windows/boot.ini
[chengmo@localhost ~] echo ${test##*/}
boot.ini
[chengmo@localhost ~]echo{test%/*}
c:/windows
[chengmo@localhost ~]echo{test%%/*}
${变量名#substring正则表达式}从字符串开头开始配备substring,删除匹配上的表达式。
${变量名%substring正则表达式}从字符串结尾开始配备substring,删除匹配上的表达式。
注意:{test##*/},{test%/*} 分别是得到文件名,或者目录地址最简单方法。
4.字符串替换
[chengmo@localhost ~]test=′c:/windows/boot.ini′[chengmo@localhost ] echo {test/\//\}
c:\windows/boot.ini
[chengmo@localhost ~] echo ${test//\//\}
c:\windows\boot.ini
${变量/查找/替换值} 一个“/”表示替换第一个,”//”表示替换所有,当查找中出现了:”/”请加转义符”\/”表示。
三、性能比较
在shell中,通过awk,sed,expr 等都可以实现,字符串上述操作。下面我们进行性能比较。
[chengmo@localhost ~]test=′c:/windows/boot.ini′[chengmo@localhost ] time for i in (seq10000);doa={#test};done;
real 0m0.173s
user 0m0.139s
sys 0m0.004s
[chengmo@localhost ~]timeforiin(seq 10000);do a=(exprlengthtest);done;
real 0m9.734s
user 0m1.628s