> $found=array();
> foreach($array as $key => $value) {
>     if(ereg('RE.+',$value)) {  // optionaly use eregi for case 
> insensitiveness
>        $found[$key]=$value;
>     }
> }

Thanks, Marek. With some minor adjustments, this worked out fine!


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to