<br>I know this is probably simple, but I&#39;m having a mental block,<br>and I can&#39;t find the &#39;easy&#39; solution in any book right now...<br><br>If I&#39;m foreach&#39;ing over a &#39;pick list&#39;, I need to get a positive indication<br>

that a match was found and then remove it from the &#39;pick list&#39;.<br><br>something like:<br><br>if requestedvalue is on the picklist {<br>   remove it from the list<br>   return found<br>} else {<br>   return notfound<br>

}<br><br>Being Perl, I&#39;m sure there is an elegant way... If only I knew.<br><br>