001、
root@DESKTOP-IDT9S0E:/home/test/test/test# str1="Homo_sapiens.GRCh38.99.chgffromosome.22.gff3" root@DESKTOP-IDT9S0E:/home/test/test/test# str2=${str1%.*} ## 截取最后一个.之前的内容 root@DESKTOP-IDT9S0E:/home/test/test/test# echo $str2 Homo_sapiens.GRCh38.99.chgffromosome.22
root@DESKTOP-IDT9S0E:/home/test/test/test# str1="ab_34_abc_34_ab_73d_abx_324" root@DESKTOP-IDT9S0E:/home/test/test/test# str2=${str1%ab*} ## 截取最后一个ab之前的内容 root@DESKTOP-IDT9S0E:/home/test/test/test# echo $str2 ab_34_abc_34_ab_73d_
标签:ab,截取,DESKTOP,test,linux,字符串,home,IDT9S0E,root From: https://www.cnblogs.com/liujiaxin2018/p/17322060.html