in reply to Break an array. I think.
@datan = ("1","2","3","4","5","6"); while ( my @x = splice(@datan, 0, 3) ) { print join(" ",@x), "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Break an array. I think.
by holli (Abbot) on Nov 22, 2005 at 09:48 UTC | |
by Roy Johnson (Monsignor) on Nov 22, 2005 at 15:15 UTC |