shell 字符串例子

3 篇文章 0 订阅
有关 shell 字符串操作的几个例子,包括取长度,读取内容,删除字符串,字符串的替换。

1.长度
[ttoy@tttt ~]$ test='I love china'
[ttoy@tttt ~]$ echo
${#test}
12

${#变量名}得到 字符串长度

2.截取字串
[ttoy@localhost ~]$ test='I love china'
[ttoy@localhost ~]$ echo
${test:5}    
e china
[ttoy@localhost ~]$ echo ${test:5:10}
e
china

${变量名:起始:长度}得到子字符串

3.字符串删除
[ttoy@localhost ~]$ test='c:/windows/boot.ini'
[ttoy@localhost ~]$
echo ${test#/}
c:/windows/boot.ini
[ttoy@localhost ~]$ echo
${test#*/}
windows/boot.ini
[ttoy@localhost ~]$ echo
${test##*/}
boot.ini

[ttoy@localhost ~]$ echo ${test%/*}
c:/windows
[ttoy@localhost
~]$ echo ${test%%/*}

${变量名#substring正则表达式}从字符串开头开始配备substring,删除匹配上的表达式。

${变量名%substring正则表达式}从字符串结尾开始配备substring,删除匹配上的表达式。

注意:${test##*/},${test%/*} 分别是得到文件名,或者目录地址最简单方法。

4.字符串替换
[ttoy@localhost ~]$ test='c:/windows/boot.ini'
[ttoy@localhost ~]$
echo ${test/\//\\}
c:\windows/boot.ini
[ttoy@localhost ~]$ echo
${test//\//\\}
c:\windows\boot.ini

${变量/查找/替换值} 一个“/”表示替换第一个,”//”表示替换所有,当查找中出现了:”/”请加转义符”\/”表示。

附: shell 字符串操作的高级变量
${#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”可以是一个正则表达式.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值