A long time ago, i suggested a rather drawn out way to transform a 1-D array into a 2-D array: (jeffa) Re: Structure for nested html::template loops. It uses autovivification to know which row to add the current piece of data to. Upon showing this to one of my college professors, he showed me a much simpler way to achieve the same results in Python, using the range built-in function.

That function takes 3 args, the first two are the start and stop points ... and if we stop right there then this function is complete "word-candy", as the dot dot operator already does this. But, the 3rd argument is the 'step', which allows for some cool stuff:

use Data::Dumper; my $step = 5; my @array = ('a'..'z'); print Dumper [ map[ @array[$_..$_+$step-1] ], range(0,$#array,$step) ];
This allows you to create a 2-D array from a 1-D array, 'folded' where ever you like. At the end, if there are no more element to stuff in the last row, the correct amount of 'undef' values will be pushed.

Now all we need is the ability to handle 'lazy lists' like Python's xrange. ;)

(and a big thanks to merlyn for reviewing this and improving it)

UPDATE: ack ... rob_au already posted something similar: Stepping through an array. (he also points out Abigail-II's solution - no grep needed!)

# usage: my @AoA = range($start,$stop[,$step]); sub range {grep!(($_-$_[0])%($_[2]||1)),$_[0]..$_[1]}

In reply to emulate Python's range function by jeffa

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.