function test_price_min(){
$post = '
Текстиль
32-37/8
975₽
';
$result_match = preg_match('/Цена\d{1,6}[рр₽][^aак]|Цена\d{1,6}[^aак]|[^-р]\d{1,6}[рр₽][^aак]|ц\d{1,6}[^в]/ui', $post, $matches_gross);
if ($result_match == true) {
echo '<pre>';
print_r($matches_gross);
echo '</pre><br>';
}
}
test_price_min();