标签: php regex
我想在文本中找到一些正则表达式,所以我使用了oreg_match和regex:
preg_match('/\b(?:[a-z]*\d+[+,-_\/]?\d*[\+]?[a-z]*\d*[a-z]*\d*)\b/i', $text, $subject); $sharh = $subject[0]; 但是当我输入UG207-32+ER作为文本时,它将“ +”替换为空格“”,而$ sharh将是UG207-32 ER
preg_match('/\b(?:[a-z]*\d+[+,-_\/]?\d*[\+]?[a-z]*\d*[a-z]*\d*)\b/i', $text, $subject); $sharh = $subject[0];
UG207-32+ER
UG207-32 ER