在第一天,我可能会收到大量的 CSV 输出,例如:
在第二天,我可能会收到以下输出:
我感兴趣的列和行总是随机的,我永远不知道输出会是哪个字段- 但我只对带有特定字符串的垂直列感兴趣。例如“叔叔”。
this,is,a,test
bob,is,your,uncle
sound,one,"Zen proverb",clapping
test,this,is,a
clapping,one,sound,"Zen proverb"
uncle,bob,is,your
Neo,the,Matrix,"Has you"
test
clapping
uncle
Neo
我是 awk 和 PERL 的新手 - 但我想 awk 将能够根据匹配的字符串打印第一个匹配列(Up-and-Down the column)。有谁知道我应该如何解析这种数据?