fork download
  1. <?php
  2.  
  3.  
  4. $text = "rhhRj 12 4.57 tThr";
  5. $regexp = "/^\s+[0-9]+/";
  6.  
  7. $matches = array();
  8.  
  9. if (preg_match($regexp, $text, $matches)) {
  10. echo "Число есть в тексте: {$matches[0]}\n";
  11. } else {
  12. echo "Числа не обнаружено";
  13. }
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Числа не обнаружено