1

我正在尝试匹配在字符串中找到的所有日期,这是函数

$description = "1999 2008 1998";

if(preg_match("/[12][0-9]{3}/", $description, $matches)){
   print_r($matches);
}

问题是只返回第一个日期,即1999我实际上想匹配所有日期。

我应该在正则表达式中更改什么?

4

2 回答 2

2

你是这个意思吗?

<?php
$description = "1999 2008 1998";

if(preg_match_all("/[12][0-9]{3}/", $description, $matches)){
   print_r($matches);
}

唯一的区别是preg_match_all代替preg_match.

于 2012-10-13T00:08:01.320 回答
0
<?php
$description = "1999 2008 1998";

$a = Array(preg_match_all('/(\d{4})*/', $description, $matches));

$count = count($matches);

for ($i = 0; $i <= $count + 2; $i++) {
    echo $matches[0][$i] . "\n";
}
?>

输出

1999
2008
1998
于 2012-10-13T01:44:29.377 回答