从php正则表达式提取匹配

前端之家收集整理的这篇文章主要介绍了从php正则表达式提取匹配前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在perl正则表达式中,我们可以提取匹配的变量,如下所示.
# extract hours,minutes,seconds
   $time =~ /(\d\d):(\d\d):(\d\d)/; # match hh:mm:ss format
   $hours = $1;
   $minutes = $2;
   $seconds = $3;

PHP中怎么做?

$subject = "E:contact@customer.com I:100955";
$pattern = "/^E:/";
if (preg_match($pattern,$subject)) {
    echo "Yes,A Match";
}

如何从那里提取电子邮件? (我们可以爆炸它得到它…但是想要一种通过正则表达式直接获取它的方法)?

尝试使用preg_match的命名子模式语法:
<?PHP

$str = 'foobar: 2008';

// Works in PHP 5.2.2 and later.
preg_match('/(?<name>\w+): (?<digit>\d+)/',$str,$matches);

// Before PHP 5.2.2,use this:
// preg_match('/(?P<name>\w+): (?P<digit>\d+)/',$matches);

print_r($matches);

?>

输出

Array (
     [0] => foobar: 2008
     [name] => foobar
     [1] => foobar
     [digit] => 2008
     [2] => 2008 )
原文链接:https://www.f2er.com/php/131131.html

猜你在找的PHP相关文章