Since we're being facetious, here's my replacement for loops. (If Perl could evaluate $data[$i][0..$#{$data[$i]}][$j] I wouldn't need the for loops at all.)
#!/your/perl/here use strict; use warnings; # backwhack whitespace my @data = ( [ [1, 'Darth\ Vader'], [3, 'Luke\ Skywalker'], [5, 'Obi\ Wan\ Kenobi'], ],[ # note stray trailing blank here [0, 'Lighsabre\ '], [5, 'Blaster'], [9, 'Rocket\ launcher'], ],[ [10, 'Dagobah'], [14, 'Kashyyyk'], ], ); # transpose innermost 2D matrices my @new_data; foreach my $set ( 0..$#data ) { foreach my $pairs ( 0..$#{$data[$set]} ) { foreach my $items ( 0..$#{$data[$set][$pairs]} ) { $new_data[$set][$items][$pairs] = $data[$set][$pairs][$ite +ms]; } } } # comma-separated pattern specs for glob $"=','; # had to break this in two because of tab and newline issues my $glob1 = "{@{$new_data[0][0]}}{@{$new_data[1][0]}}{@{$new_data[2][0 +]}}"; my $glob2 = "{@{$new_data[0][1]}}" . '\,\ ' . "{@{$new_data[1][1]}}" . + '\,\ ' . "{@{$new_data[2][1]}}"; my @glob1 = glob $glob1; my @glob2 = glob $glob2; print map {"$glob1[$_]\t$glob2[$_]\n"} 0..$#glob1;

-QM
--
Quantum Mechanics: The dreams stuff is made of


In reply to Re: All Combinations of three arrays. by QM
in thread All Combinations of three arrays. by holli

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.