preg_replace( array('/a+/','/b+/','/c+/'),array('a','b','c',), $b );
Another way pretty more elaborate could be:
preg_replace_callback('/(w+)/', function ($matches) use ($a) {
if ( in_array($matches[1][0],$a) ) //> if you need UTF-8 working use mb_substr here
return $matches[1][0];
},$b);
//> both untested
Another way, old way (that could be a bit faster on few chars string):
$c = '';
$cache = false;
for ($i=0;$i<strlen($b);$i++) {
$char = $b[$i];
if ($char !== $cache || !in_array($char,$a))
$c .= $char;
$cache=$char;
}
echo $c;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…