1. 程式人生 > >awk 提取數字

awk 提取數字

d3d style ring spl audio true subst isp clas

echo b1c2d3d1e8f9 | awk ‘
{
     string=$0
     len=length(string)
     for(i=0; i<=len; i++) 
     {
          tmp=substr(string,i,1)
          if(tmp ~ /[1-9]/) 
          { 
              str=tmp
              str1=(str1 str)
         }
     }
     print str1
}‘            

  命令行直接貼入以上代碼。

awk 提取數字