in reply to How do I delete a row of an array

I'm not quite sure what you mean, an array is a list containing elements. Do you want to remove one particular element from a list? Or are you talking about an Array of Arrays and need to delete one Array from the Array?

update: To remove an element from an array, take a look at the following code sample.

my @rray=qw(mercury venus earth mars jupiter saturn neptune uranus plu +to); print "\@rray contains: @rray\n"; print "Removing $rray[1]\n"; @new_array=splice(@rray,1,1); print "\@new_array now contains: @new_array\n"; print "\@rray now contains: @rray\n";


"Ex libris un peut de tout"