¡¡Hola, Explorer!!
De antemano, gracias por tu ayuda... Lamentablemente no he podido realizar la acción que deseo aún, con tu explicación.
Ya he tratado casi todo el día y nada, estoy empezando a desesperarme... lol
Estas son unas de las líneas que quiero analizar:
Using html4strict Syntax Highlighting
<Result>
<Title>
CHIP Online - Deutschlands Webseite Nr. 1 fuer Computer, Handy ...
</Title>
<Url>http://www.pconline.de/</Url>
<ClickUrl>http://www.pconline.de/</ClickUrl></Result>
<Result>
<Title>
nautiker-Werbeagentur, Werbung, Marketing, Internet-Agentur ...
</Title>
<Url>http://www.nautiker.info/</Url>
<ClickUrl>http://www.nautiker.info/</ClickUrl>
</Result>
<Result>
<Title>SV Manching e.V.</Title>
<Url>http://www.sv-manching.de/</Url>
<ClickUrl>http://www.sv-manching.de/</ClickUrl>
</Result>
Coloreado en 0.003 segundos, usando
GeSHi 1.0.8.4
Y una parte del código que he probado es este:
Using perl Syntax Highlighting
open(DATOS,"$file")|| die "Die File $archivo, existiert nicht - Aborting Programm";
while(<DATOS>){
$linea=$_;
if($linea=~m{<title>\n(.*?)<\/title>}sig){
print TEMP $linea;
}
}
Coloreado en 0.001 segundos, usando
GeSHi 1.0.8.4
Como verás, abro el archivo donde tengo las líneas anteriores y lo voy recorriendo dentro del while() pero aun no he podido capturar todo lo que está dentro de las etiquetas <title> y </url>. Lo único que sé es que ese salto de línea me está dando problemas. De ahí nada más... ¿Podrías darme una idea de cómo podría hacer esto?
Muchas gracias por tu ayuda.
Saludos.