码迷,mamicode.com
首页 > 其他好文 > 详细

Bash 字符串处理命令

时间:2017-01-10 09:17:10      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:开头   字符串连接   bash   取子串   字符串处理   命令   字符串替换   ash   查找   

  • 字符串长度
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   取子串   字符串处理   命令   字符串替换   ash   查找   

原文地址:http://www.cnblogs.com/dmir/p/6267374.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!