<?php
 
error_reporting (-1);

$text = "rhhRj 12 4.57 tThr";
$regexp = "/^\s+[0-9]+/";

$matches = array();
 
if (preg_match($regexp, $text, $matches)) {
	echo "Число есть в тексте: {$matches[0]}\n";
} else {
	echo "Числа не обнаружено";
}