fork download
  1. <?php
  2.  
  3. $string = ' 1 DOPPEL TYP I MEERBLICK HALBPENSION';
  4. $regex = '~^\D*(\d+)\h*((?:(?!\h{2,}).)+)~';
  5. preg_match_all($regex, $string, $matches);
  6. print_r($matches);
  7.  
  8. ?>
  9.  
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] =>  1  DOPPEL TYP I MEERBLICK
        )

    [1] => Array
        (
            [0] => 1
        )

    [2] => Array
        (
            [0] => DOPPEL TYP I MEERBLICK
        )

)