如何从php文本中提取所有4位数字?

时间:2013-05-19 09:06:56

标签: php regex

例如:我有一个文本testt1591fff44f43f0015ffef159,因为该字符串中不会有超过4个连续数字,我如何通过PHP从中提取1591和0015?

1 个答案:

答案 0 :(得分:5)

http://www.php.net/manual/en/function.preg-match-all.php

<?php
$text = 'testt1591fff44f43f0015ffef159';

preg_match_all('~\d{4}~',  $text, $matches);

?>

没有测试代码