@a = qw( 0 1 2 3 4 5 6 ) # starting at position 2, delete 1 element splice @a, 2, 1 print join ", ", @a # generates the output : 0, 1, 3, 4, 5, 6