malongshuai / malongshuai.github.io

2 stars 0 forks source link

精通awk系列(20):awk数组用法详解 | 骏马金龙 #188

Open malongshuai opened 3 years ago

malongshuai commented 3 years ago

https://www.junmajinlong.com/shell/awk/awk_array/

回到: Linux系列文章 Shell系列文章 Awk系列文章 数组awk数组特性: awk的数组是关联数组(即key/value方式的hash数据结构),索引下标可为数值(甚至是负数、小数等),也可为字符串 在内部,awk数组的索引全都是字符串,即使是数值索引在使用时内部也会转换成字符串 awk的数组元素的顺序和元素插入时的顺序很可能是不相同的 aw

Snail1502 commented 2 years ago

博主你好,为什么我指定数组遍历顺序时 不起作用 是不是版本问题?

$ awk -W version

mawk 1.3.4 20200120 Copyright 2008-2019,2020, Thomas E. Dickey Copyright 1991-1996,2014, Michael D. Brennan

random-funcs: srandom/random regex-funcs: internal compiled limits: sprintf buffer 8192 maximum-integer 2147483647

malongshuai commented 2 years ago

@Littlesnail1502 大于等于 gawk 4.2.0,在这个系列的第一篇文章里有说明的

Snail1502 commented 2 years ago

@malongshuai 多谢多谢