このhtmlから郵便番号(91150)を取得しようとしています:
<div>
<strong>Adresse de la commune : </strong><br>
HOTEL DE VILLE<br>91150 ABBEVILLE-LA-RIVIERE
<p>Téléphone : <strong>01 64 95 67 37</strong><br>
Fax : <strong>01 69 58 80 17</strong></p>
<p>Localisation géographique : </p>
</div>
PHPで私がした:
$page = file_get_contents($url);
preg_match('`<strong>Adresse de la commune : </strong>([^[0-9]]*)<p>`', $page, $regs);
var_dump($regs);// returns empty
誰か助けてくれませんか、ありがとう