in reply to replace/ overwrite values of arrays!
Hi,
You can use splice also to achieve this.
my @array= qw(A R N D); splice(@array,0,4,qw(B N M C)); [download]