You are saying "array or reference array" like it was two different things. Which is confusing.
I assume that since you have named your array @removedElements, what you are trying to ask is how to remove the elements from @array and put them in @removedElements.
@removedElements = grep /test/, @array;
@array = grep ! /test/, @array;
A simple negation of the test will yield either list. You can also do a loop:
my (@removedElements, @rest);
for (@array) {
if (/test/) {
push @removedElements, $_;
} else {
push @rest, $_;
}
}
Which has the benefit of fewer checks being performed.
In order to use splice, you would need to keep track of indexes, and I'm not sure its worth it in this case. It certainly would not make your code easier to read. Similarly, I doubt map would be much more useful than a regular loop.