如何检查给定的字符串是否有效正则表达式?
可能重复:
测试一个正则表达式在PHP中是否有效
<?php
$subject = "PHP is the web scripting language of choice.";
$pattern = 'sssss';
if(preg_match($pattern,$subject))
{
echo 'true';
}
else
{
echo 'false';
}
?>
上面的代码给了我警告,因为字符串$pattern
不是有效的正则表达式。
如果我通过有效的正则表达式,那么它工作正常.....
我如何检查$pattern
是否有效的正则表达式?
你可以用try catch包装preg_match
,并且如果它抛出异常,则认为结果为false。
无论如何,你可以看看正则表达式来检测一个有效的正则表达式。
如果Regexp出现问题,您可以编写一个抛出错误的函数。 (就像它应该在我看来一样。)使用@
来压制警告是不好的做法,但是如果用抛出的异常替换它,它应该没问题。
function my_preg_match($pattern,$subject)
{
$match = @preg_match($pattern,$subject);
if($match === false)
{
$error = error_get_last();
throw new Exception($error['message']);
}
return false;
}
那么你可以检查正则表达式是否正确
$subject = "PHP is the web scripting language of choice.";
$pattern = 'sssss';
try
{
my_preg_match($pattern,$subject);
$regexp_is_correct = true;
}
catch(Exception $e)
{
$regexp_is_correct = false;
}
使用===
运算符:
<?php
$subject = "PHP is the web scripting language of choice.";
$pattern = 'sssss';
$r = preg_match($pattern,$subject);
if($r === false)
{
// preg matching failed (most likely because of incorrect regex)
}
else
{
// preg match succeeeded, use $r for result (which can be 0 for no match)
if ($r == 0) {
// no match
} else {
// $subject matches $pattern
}
}
?>
链接地址: http://www.djcxy.com/p/76749.html