我正在编写一个正则表达式来从字符串中提取数字模式。当我曾经运行下面的代码片段时,它显示了一个警告
"preg_match() [<a href='function.preg-match'>function.preg-match</a>]: No ending delimiter '^' "
谁能告诉我为什么这个警告以及如何解决它?
$temp=0;
$exp=(explode(" ",$message1));
while($temp<sizeof($exp))
{
if(preg_match("^(+91|0091|0)?[7-9][0-9]{9}$",$exp[$temp]))
{
$pat=$exp[$temp];
}
}