function regexp($text){
$text = preg_replace('#!test=#', '', $text);
$text = preg_replace('#@test=#', '', $text);
return $text;
}
我怎样才能合并这个正则表达式?他们只是不同!和 @。在我的例子中是错误的,这不起作用。我只想:
$a = 'asdf!test=wer';
$b = '232@test=dsf';
改成:
$a = 'asdfwer';
$b = '232dsf';
用正则表达式。