tags:

views:

43

answers:

2

i've got an array with string values.

i want to search for a pattern with regex and if matched, remove the key containing the value.

how would i accomplish this?

+3  A: 
foreach($array as $key => $value) {
    if(preg_match($pattern, $value)) {
        unset($array[$key]);
    }
}
chelmertz
+3  A: 

preg_grep: http://php.net/manual/en/function.preg-grep.php

$a = array('foo' => 'xx', 'bar' => '12');
$b = preg_grep('~[a-z]~', $a, PREG_GREP_INVERT);
print_r($b);
stereofrog