preg_match()函数问题

时间:2013-07-09 09:30:16

标签: php regex

我想在regex中运行以下PHP,但我遇到了错误:

  

preg_match()[function.preg-match]:无结尾分隔符'^'

我的代码:

if (preg_match("^(?!.*(l_name|f_name|m_name)).*$", $str)) {
   // Do sth 
}

有什么想法吗?

1 个答案:

答案 0 :(得分:3)

尝试

if (preg_match("/^(?!.*(l_name|f_name|m_name)).*$/", $str)) {
   // Do sth    ^                                ^
}