fork download
  1. <?php
  2. preg_match_all ('/(\w+\,\d+)/', 'M10,18L202,13M23,2L1,1L20,111' ,$result);
  3. print_r($result);
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => M10,18
            [1] => L202,13
            [2] => M23,2
            [3] => L1,1
            [4] => L20,111
        )

    [1] => Array
        (
            [0] => M10,18
            [1] => L202,13
            [2] => M23,2
            [3] => L1,1
            [4] => L20,111
        )

)