栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

shell 字符串处理

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

shell 字符串处理

test="my name is gaole"
echo ${#test}   #get length of a string
echo ${test:4}  #get substring from 5 to the end
echo ${test:4:6}  #get substring from 5 to the following 6 characters
echo ${test:-3}  #get the last character,but some bash can't support -3
echo ${test:5:-1} #get substring from 6 and delete the last letter,but some bash can't support
test2="abdabdfebabdABDe"
echo ${test2//b/x}  #replace all gs with a 
echo ${test2/b/x} #replace the first g
echo ${test2%%*ABDe} #replace from right with 
echo ${test2%*ABDe}  #replace from right with the shortest length
echo ${test2#abd*d}   #replace from left with the shortest length
echo ${test2##abd*d}  #replace from left with the largest length
a="test121212121212121212121212"
b="test1"
if [ "test" == "test1" ] ;then #space must be write between every [ and ==
   echo "equal"
elif [[ $a == $b* ]] ;then  #double zhong kuohao will enable moshi match
   echo "contain"
else
   echo "not equal"
fi

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/831300.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号