0

我有字符串(在数组中):

$a = "account Tel48201389 user@whatever.net dated 2013-07-01 in JHB".

$b = "installation on 2013-08-11 in PE".

我只需要使用 PHP 从每个字符串中获取完整日期。
是否可以在预匹配中使用通配符?
我试过了:

preg_match('/(?P<'name'>\w+): (?P'<'digit-digit-digit'>'\d+)/', $str, $matches); 

但它给出了一个错误。 最终
结果应该是: 谢谢!$a = 2013-07-01"$b = "2013-08-11"

4

4 回答 4

1

您可以使用 preg_match_all 获取字符串中的所有日期模式。所有字符串匹配都将保存在一个数组中,该数组应作为参数传递给函数。

在此示例中,将所有模式 dddd-dd-dd 保存在数组 $matches 中。

$string = "account Tel48201389 user@whatever.net dated 2013-07-01 in JHB installation on 2013-08-11 in PE";

if (preg_match_all("@\d{4}-\d{2}-\d{2}@", $string, $matches)) {
   print_r($matches);
}

祝你好运!

于 2013-06-24T22:37:07.377 回答
0

你可以这样做。

<?php
$b = 'installation on 2013-08-11 in PE';
preg_match('#([0-9]{4}-[0-9]{2}-[0-9]{2})#', $b, $matches);
if (count($matches) == 1) {
    $b = $matches[0];
    echo $b; # 2013-08-11
}
?>
于 2013-06-24T22:37:38.307 回答
0

尝试这个....

 $a = "account Tel48201389 user@whatever.net dated 2013-07-01 in JHB";

 preg_match("/(?P<year>[0-9]{4})-(?P<month>[0-9]{2})-(?P<day>[0-9]{2})/", $a, $matches);

 if($matches){
 echo $matches[0];// For the complete string
 echo $matches['year'];//for just the year etc
 }
于 2013-06-24T22:38:00.997 回答
0
 $a = "account Tel48201389 user@whatever.net dated 2013-07-01 in JHB";

    if(preg_match('%[0-9]{4}+\-+[0-9]{2}+\-[0-9]{2}%',$a,$match)) {

    print_r($match);    

    }

应该适用于两个字符串 - 如果日期总是采用这种格式。

于 2013-06-24T22:36:17.720 回答