Daha sonra bir süre boşluk ikinci bir örneğini bularak bir preg_match_all
rafine çalışıyorum:
<?php
$str = "East Winds 20 knots. Gusts to 25 knots. Waters a moderate chop. Slight chance of showers.";
preg_match_all ('/(^)((.|\n)+?)(\.\s{2})/',$str, $matches);
$dataarray=$matches[2];
foreach ($dataarray as $value)
{ echo $value; }
?>
Ama bu işe yaramazsa: {2}
olay yanlıştır.
Dinamik HTML kazıma çünkü ben preg_match_all
kullanmak zorunda.
Ben dizeden bu yakalamak istiyoruz:
East Winds 20 knots. Gusts to 25 knots.