分隔符不得为字母数字或反斜杠,preg_match
2022-08-30 07:34:22
我有这个代码:
$string1 = "My name is 'Kate' and im fine";
$pattern = "My name is '(.*)' and im fine";
preg_match($pattern , $string1, $matches);
echo $matches[1];
当 im 运行时,它将返回此错误:
警告:preg_match() [function.preg-match]:分隔符不得为字母数字或反斜杠