Esteemed Monks
I posted earlier this: Array searching to replace an element in an array, though I have found since then that the postion in the array is very important.
As I loop through an array: @a = (1,2,3,4); I get to the 3 value and find that I need it replaced with a value from @b =(1,5,3,6,8,2,4); without duplicating any values in the first array. As an example for the ending array @a = (1,2,8,4);
Thank you for your help in advance