01/07/2010, 21:03
|
| | | Fecha de Ingreso: diciembre-2009
Mensajes: 310
Antigüedad: 14 años, 11 meses Puntos: 7 | |
Respuesta: Dividir filas muy largas LO probe y funciona el de arriba tiene un par de errores que te corregí
<?php
$str= "aaaaaaaaaBBBBBBBBBBBccccccccccDDDDDDDDD";
preg_match_all("#a(.*?)a(?=BB)#", $str, $str1);
preg_match_all("#B(.*?)B(?=cc)#", $str, $str2);
preg_match_all("#c(.*?)c(?=DD)#", $str, $str3);
preg_match_all("#D(.*?)$#", $str, $str4);
echo $str."<br><pre>";
print_r($str1[0]);
print_r($str2[0]);
print_r($str3[0]);
print_r($str4[0]);
?>
Espero que te sirva el ejemplo |