2014-02-07 72 views

回答

2
echo $a | awk '{print $1}' FS=[0-9] 
1

使用bash strings

echo ${a%%[0-9]*} 

%%指貪婪模式從右側匹配,我們匹配其次是一些文本(或沒有)的任何數字(0-9)。

相關問題