http://qs1969.pair.com?node_id=782585


in reply to Re: Deleteing array elements
in thread Deleteing array elements

Once you've got your array set up as described by Corion, use splice
my @a=('a','b','c','d'); splice @a, 2, 1; print join ",", @a;
--
Linux, perl, punk rock, cider: charlieharvey.org.uk.

Replies are listed 'Best First'.
Re^3: Deleteing array elements
by hobbs (Monk) on Jul 23, 2009 at 09:36 UTC
    I prefer to write splice @a, 2, 1, (); it doesn't do anything different, but it makes things clear as well as making things parallel with substr (substr and splice act differently with three arguments, but they act the same with four). Am I the only one?