PHP -Extraktnummer aus String ohne Komma
$str = '- 602,135 results';
echo $result = preg_replace("/[^0-9]/","",$str);
Borma
$str = '- 602,135 results';
echo $result = preg_replace("/[^0-9]/","",$str);