fork(1) download
  1. <?php
  2.  
  3. $price = 'Цена данного товара равна 355,55 рублей';
  4.  
  5. preg_match_all('#\d+[,.]\d+#', $price, $m);
  6. print_r($m);
Success #stdin #stdout 0.02s 20520KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => 355,55
        )

)