I'm programming in Perl, and I'm in a situation where I have an array such as @contents=(A,S,D,F,M,E) and I want to replace the element M with two new elements X and Y, such as @contents would equal (A,S,D,F,X,Y,E).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use
Or you can use
You can also simplify further by using |
|||||||||
|
|
The command you are looking for is splice.
|
|||||||||||||||
|
M, or just the first, or are you content to assume that there's only one? – Keith Thompson Dec 22 '11 at 3:47