Is what you had in mind something like this?
use warnings; use strict; my $horiz_data = <<"HORIZ" ; |||01/01/2007|01/02/2007|01/03/2007|06/29/2007| |JOHN DOE|Event1|PARTY|CLASS|WORK|VACATION| |JOHN D0E|Event2|CLASS|CLASS|WORK|PARTY| |JANE DOE|Event1|PARTY|CLASS|WORK|VACATION| |JANE DOE|Event2|CLASS|CLASS|WORK|PARTY| HORIZ my @horiz = split "\n", $horiz_data; my @dates = split '\|', shift @horiz; shift @dates; shift @dates; shift @dates; for my $line (@horiz) { my @flds = split '\|', $line; shift @flds; my $name = shift @flds; my $event = shift @flds; my @dates_copy = @dates; for my $date (@dates_copy) { print "|$name|$date|$event|",shift(@flds),"|\n"; } } # for $line
which produces
|JOHN DOE|01/01/2007|Event1|PARTY| |JOHN DOE|01/02/2007|Event1|CLASS| |JOHN DOE|01/03/2007|Event1|WORK| |JOHN DOE|06/29/2007|Event1|VACATION| |JOHN D0E|01/01/2007|Event2|CLASS| |JOHN D0E|01/02/2007|Event2|CLASS| |JOHN D0E|01/03/2007|Event2|WORK| |JOHN D0E|06/29/2007|Event2|PARTY| |JANE DOE|01/01/2007|Event1|PARTY| |JANE DOE|01/02/2007|Event1|CLASS| |JANE DOE|01/03/2007|Event1|WORK| |JANE DOE|06/29/2007|Event1|VACATION| |JANE DOE|01/01/2007|Event2|CLASS| |JANE DOE|01/02/2007|Event2|CLASS| |JANE DOE|01/03/2007|Event2|WORK| |JANE DOE|06/29/2007|Event2|PARTY|

In reply to Re: How to Change Data Layout from Horizon to Vertical by rodion
in thread How to Change Data Layout from Horizon to Vertical by Anonymous Monk

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.