Bash 字符串处理命令
Posted 奋斗的珞珞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bash 字符串处理命令相关的知识,希望对你有一定的参考价值。
- 字符串长度
str="abc" echo ${#str}
- 查找子串的位置
str="abc" str1=`expr index $str "a"` echo $str1
- 选取子串
str="abc" str1=`expr substr $str 1 2` echo $str1
str="abcdef" echo ${str:2} # 从第二个位置开始提取字符串, bcdef echo ${str:2:3} # 从第二个位置开始提取3个字符, bcd echo ${str:(-6):5} # 从倒数第二个位置向左提取字符串, abcde echo ${str:(-4):3} # 从倒数第二个位置向左提取6个字符, cde
- 字符串替换
str="apple, tree, apple tree" echo ${str/apple/APPLE} # 替换第一次出现的apple echo ${str//apple/APPLE} # 替换所有apple echo ${str/#apple/APPLE} # 如果字符串str以apple开头,则用APPLE替换它 echo ${str/%apple/APPLE} # 如果字符串str以apple结尾,则用APPLE替换它
- 字符串连接
str="abc" str1="ab" str2=${str}${str1}
以上是关于Bash 字符串处理命令的主要内容,如果未能解决你的问题,请参考以下文章
-bash: /usr/bin/ls: /lib64/ld-linux-x86-64.so.2: bad ELF interpreter: No such file or directory(代码片段