0

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

4

1 回答 1

5

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

<?php
$text = 'testt1591fff44f43f0015ffef159';

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

?>

没有测试代码

于 2013-05-19T09:10:06.390 回答