in reply to join column 3 for unique values
Here is another way to do it with Data::Table.
Space-delimited data is in data.txt
Running this script,A1 abc yellow B1 xyz green A2 cde red A1 abc green A2 cde yellow A1 abc blue
gives the following output,#!/usr/bin/env perl use strict; use warnings; use Data::Table; my $t = Data::Table::fromCSV('data.txt', 0, undef,{delimiter => ' '}); my $mt = $t->melt(['col1', 'col2']); my $ct = $mt->cast(['col1', 'col2'], 'variable', Data::Table::STRING, +'value', \&col_join); $ct->sort('col1', 1, 0); print $ct->csv(0, {delimiter => " "}); exit; sub col_join { my @data = @_; my $joined = join(":", @data); return($joined); }
A1 abc yellow:green:blue A2 cde red:yellow B1 xyz green
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: join column 3 for unique values
by hello_beginner (Novice) on Sep 06, 2016 at 04:25 UTC | |
by kevbot (Vicar) on Sep 06, 2016 at 05:17 UTC |