awk数组定义与操作方法,awk数组相关函数的用法,awk二维数组与多维数组的例子,一起来学习下。
一、awk数组定义
Tarray[1]=“cheng mo”
Tarray[2]=“800927”
2、用字符串作数组索引(下标)
Tarray[“first”]=“cheng ”
Tarray[“last”]=”mo” Tarray[“birth”]=”800927”
使用中 print Tarray[1] 将得到”cheng mo” 而 print Tarray[2] 和 print[“birth”] 都将得到 ”800927” 。
[chengmo@localhost ~]$ awk --version
GNU Awk 3.1.5 使用版本是:3.1以上,不同版本下面函数不一定相同
得到数组长度(length方法使用)
[chengmo@localhost ~]$ awk 'BEGIN{info="it is a test";lens=split(info,tA," ");print length(tA),lens;}'
4 4
length返回字符串以及数组长度,split进行分割字符串为数组,也会返回分割得到数组长度。
[chengmo@localhost ~]$ awk 'BEGIN{info="it is a test";split(info,tA," ");print asort(tA);}'
4
asort对数组进行排序,返回数组长度。
[chengmo@localhost ~]$ awk 'BEGIN{info="it is a test";split(info,tA," ");for(k in tA){print k,tA[k];}}'
4 test 1 it 2 is 3 a
for…in 输出,因为数组是关联数组,默认是无序的。所以通过for…in 得到是无序的数组。如果需要得到有序数组,需要通过下标获得。
[chengmo@localhost ~]$ awk 'BEGIN{info="it is a test";tlen=split(info,tA," ");for(k=1;k<=tlen;k++){print k,tA[k];}}'
1 it 2 is 3 a 4 test
注意:数组下标是从1开始,与c数组不一样。
[chengmo@localhost ~]$ awk 'BEGIN{tB["a"]="a1";tB["b"]="b1";if(tB["c"]!="1"){print "no found";};for(k in tB){print k,tB[k];}}'
no found a a1 b b1 c
[chengmo@localhost ~]$ awk 'BEGIN{tB["a"]="a1";tB["b"]="b1";if( "c" in tB){print "ok";};for(k in tB){print k,tB[k];}}'
a a1 b b1
if(key in array) 通过这种方法判断数组中是否包含”key”键值。
[chengmo@localhost ~]$ awk 'BEGIN{tB["a"]="a1";tB["b"]="b1";delete tB["a"];for(k in tB){print k,tB[k];}}'
b b1
例如,array[2,4] = 1这样的访问是允许的。 与一维数组不同的是,多维数组必须使用split()函数来访问单独的下标分量。 split ( item, subscr, SUBSEP)
例子:
[chengmo@localhost ~]$ awk 'BEGIN{
for(i=1;i<=9;i++) { for(j=1;j<=9;j++) { tarr[i,j]=i*j; print i,"*",j,"=",tarr[i,j]; } } }' 1 * 1 = 1 1 * 2 = 2 1 * 3 = 3 1 * 4 = 4 1 * 5 = 5 1 * 6 = 6 ……
可以通过array[k,k2]引用获得数组内容.
[chengmo@localhost ~]$ awk 'BEGIN{
for(i=1;i<=9;i++) { for(j=1;j<=9;j++) { tarr[i,j]=i*j; } } for(m in tarr) { split(m,tarr2,SUBSEP); print tarr2[1],"*",tarr2[2],"=",tarr[m]; } }' (责任编辑:IT) |