Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-03-29 08:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found