function regexp($text){
$text = preg_replace('#!test=#', '', $text);
$text = preg_replace('#@test=#', '', $text);
return $text;
}
如何合併此正則表達式?他們只有不同!和@。在我的例子中是錯誤,並且這不起作用。我想簡單地說:合併兩個正則表達式
$a = 'asdf!test=wer';
$b = '[email protected]=dsf';
變化:
$a = 'asdfwer';
$b = '232dsf';
用正則表達式。
'的preg_replace( '#[!@]測試=#', '',$文本)'? – DCoder