Say I have an array @array = ( 1, 2, 3, 4, 5) I know I want to remove the second value, $array[2]. How should I do this?
Is it possible to issue a command that just does this for me or do I have to loop through setting $array[n]=$array[n+1] for n>which ever value I wish to remove? (I hope that makes sense). The second solution whilst effectively removing the unwanted element would mean that the end of my array was filled with duplicates or rubbish, so isn't really a solution unless I can then tidy it up somehow. TIA Andrew -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]