Onderstaand preg match laat niets zien, wat doe ik fout?
<?php
$string = file_get_contents('http://www.politie.nl/nieuws/2014/september/7/08-man-wordt-geslagen-en-beroofd.html');
preg_match_all('#<div class="contentDetail">(.*)<div class="shareBlock">#i', $string, $matches);
print_r($matches);
?>