在perl regex中,我们可以提取匹配的变量,例如下面。
# 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+)/', $str, $matches);
print_r($matches);
?>
输出:
Array (
[0] => foobar: 2008
[name] => foobar
[1] => foobar
[digit] => 2008
[2] => 2008 )
关于php - 从php正则表达式中提取匹配项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1492980/