<?php

$price = 'Цена данного товара равна 355,55 рублей';

preg_match_all('#\d+[,.]\d+#', $price, $m);
print_r($m);