您好,登錄后才能下訂單哦!
1、使用unix自帶的方法:
${varible##*string} 從左向右截取最后一個(gè)string后的字符串
${varible#*string}從左向右截取第一個(gè)string后的字符串
${varible%%string*}從右向左截取最后一個(gè)string后的字符串
${varible%string*}從右向左截取第一個(gè)string后的字符串
"*"只是一個(gè)通配符可以不要
$ test1=123456.txt
$ echo ${test1%.txt}
123456
$ echo ${test1#*23}
456.txt
$ test2=${test1%.txt}'.rst'
$ echo $test2
123456.rst
2、使用cut命令
$ test1=123456.txt
$ echo $test1|cut -f 1 -d .
123456
此處我略有疑問,為什么不能將此值賦值給另一個(gè)變量?比如:
$ test2=echo $test1|cut -f 1 -d .
ksh: 123456.txt: not found.
$ echo test2=$test1|cut -f 1 -d .
test2=123456
$ echo $test2
此處test2無(wú)值,why?
忽然想到shell中的反引號(hào)了,TAB鍵上面的那個(gè),反引號(hào)引起來(lái)的部分會(huì)優(yōu)先執(zhí)行,做了下測(cè)試:
$ test2=`echo $test1|cut -f 1 -d .`
$ echo $test2
123456
$ test2=`echo $test1|cut -f 1 -d .`'.rst'
$ echo $test2
123456.rst
成功!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。