fork(12) download
  1. <?php
  2.  
  3. $txt="calculated F 15 513 153135 155 125 156 155";
  4. preg_match_all("/(?:\G(?!\A)|calculated\s+F)\s*\K\d+/",$txt,$matches);
  5. print_r($matches[0]);
Success #stdin #stdout 0.02s 82944KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 15
    [1] => 513
    [2] => 153135
    [3] => 155
    [4] => 125
    [5] => 156
    [6] => 155
)