Hi:<br><br>So here is my quandry. I have a list of stock symbols stored in array (@sym), and am looking to test each symbol against a series of conditions&nbsp; (foo1, foo2....). When the condition is met, I would like to remove that symbol and return to the top of the loop to start working on the next symbol. I&#39;m having no trouble getting the test conditions to work, or the looping to work. However I can&#39;t seem to remove the symbol from the array. It&#39;s a conceptual thing at this point, so a solution is nice but not required. Need to understand.<br>
<br>So here&#39;s what I had attempted...<br><br>foreach $symbol(@symbol) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(foo1) <br><br><br>