如何将重复的行合并为一行并用逗号分隔

如何将重复的行合并为一行并用逗号分隔

我有以下数据:

St1 apt1
St1 apt2
St2 apt5
St3 apt6
St3 apt7
St3 apt8

我想合并重复的行并用逗号分隔字段并有 2 列,例如:

St1 apt1,apt2
St2 apt5
St3 apt6,apt7,apt8

我尝试了以下命令,但没有按预期工作:

awk 'BEGIN{FS="\t"}; BEGIN{OFS="\t"}; { arr[$1] = arr[$1] $2 }   END {for (i in arr) print i arr[i] }'

结果是:

St1apt1apt2
St2apt5
St3apt6apt7apt8

有什么建议吗?

答案1

只需进行一些调整:

$ awk '
    BEGIN{FS="\t"; OFS=FS}; 
    { arr[$1] = arr[$1] == ""? $2 : arr[$1] "," $2 }   
    END {for (i in arr) print i, arr[i] }
' data
St1    apt1,apt2
St2    apt5
St3    apt6,apt7,apt8

答案2

sed -e '
   :a
   $!N
   s/^\(\(\S\+\)\s\+.*\)\n\2\s\+/\1,/;ta
' yourfile

结果

St1 apt1,apt2
St2 apt5
St3 apt6,apt7,apt8

相关内容