我有这个字符串,中间有一年。 我想提取年份和之前和之后的一切。
我使用以下单独的正则表达式:
'/\d{4}\b/'
'/(.*?)\d{4}\b/';
(我不知道如何从结果中排除日期,但这不是问题...)'/d{4}\/(.*?)\b/'
(这个不起作用)答案 0 :(得分:5)
$str = 'The year is 2048, and there are flying forks.';
$regex = '/(.*)\b\d{4}\b(.*)/';
preg_match($regex,$str,$matches);
$before = isset($matches[1])?$matches[1]:'';
$after = isset($matches[2])?$matches[2]:'';
echo $before.$after;
编辑:回答OP(路易斯)对多年的评论:
$str = 'The year is 2048 and there are 4096 flying forks from 1999.';
$regex = '/(\b\d{4}\b)/';
$split = preg_split($regex,$str,-1,PREG_SPLIT_DELIM_CAPTURE);
print_r($split);
$split
提供了一个类似的数组:
Array
(
[0] => The year is
[1] => 2048
[2] => and there are
[3] => 4096
[4] => flying forks from
[5] => 1999
[6] => .
)
此次要示例还显示了对可解析数据的假设所涉及的风险(请注意4096处的货叉数量与4位数年份的数量相匹配)。