in reply to How do I delete a row of an array
How do I delete row $i from an array
If you have read the perldoc you wouldnt call the elements of an array as 'row'. In perl there are no multi-dimensional array. Having said that, there are ways by which you can create a multi-dimensional array in perl.
see perldoc perldata for a complete discussion about the data structures supported in perl.
-T
use perl; use strict;
|
|---|