SyntaxFix
Write A Post
Hire A Developer
Questions
The best I found was a combination of "undef" and "grep":
foreach $index ( @list_of_indexes_to_be_skiped ) { undef($array[$index]); } @array = grep { defined($_) } @array;
That does the trick! Federico