in reply to Re: stack array to array of arrays
in thread stack array to array of arrays
Producesmy @array = qw(0 a b c e 1 2 3 4 5 3 f w); my $len = 4; print oxTable->new([ map [splice @array,0,$len], 0..$#array/$len ]);
+--+--+--+--+ |0 |a |b |c | |e |1 |2 |3 | |4 |5 |3 |f | |w | | | | +--+--+--+--+
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: stack array to array of arrays
by LanX (Saint) on Oct 17, 2013 at 15:17 UTC | |
by spandox (Novice) on Oct 17, 2013 at 17:43 UTC | |
by LanX (Saint) on Oct 17, 2013 at 17:57 UTC |