How about this:
use strict; use warnings; chomp (my @keys = split /, /, <DATA>); # First row shift @keys; # Drop "NAME" my %h; for (<DATA>){ chomp ; my ($name,@items) = split /,\s*/ or next; $h{$name} = { map {$keys[$_] => $items[$_] =~/(\d+)/ } 0..$#keys } +; } printcol("IN",{row1=>["a","c"], row2=>["d","b"]}); printcol("OUT",{row1=>["a","c"], row2=>["d","b"]}); sub printcol{ my ($col, $r) = @_; print "$col:\n"; for (sort keys %$r){ print "$_ : ",join (", ", map{ $h{$_}{$col} } @{$r->{$_}}), "\n +"; } print "\n$col:\n"; for (sort keys %$r){ print "$_ : ",join (", ", @{$r->{$_}}), "\n"; } print "\n"; } __DATA__ NAME, IN, OUT a, 10, 20 b, 10, 30 c, 50, 20 d, 20, 60
Output:
IN: row1 : 10, 50 row2 : 20, 10 IN: row1 : a, c row2 : d, b OUT: row1 : 20, 20 row2 : 60, 30 OUT: row1 : a, c row2 : d, b

        Our business is run on trust. We trust you will pay in advance.


In reply to Re: Linking data together by NetWallah
in thread Linking data together by perlUser345

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.