Saiyine
Punto Com

Extraer URLs de la entrada estandard

2004-12-16 00:00:00

Un script que he escrito en un momento para sacar las urls que han ido saliendo en la web. Además, si hay un texto en title lo usa como explicación del enlace.

#!/usr/bin/perl
while ()
{
$linea=$_;
while ($linea=~/(<a href="(http[^"]+?)" target="_blank" title="([^"]*?)">(.*?)<\/a>)/i )
{
$url=$2;
$titulo=$3;
$texto=$4;
if ( !$titulo )
{
$titulo=$texto;
}
print "<li><a href=\"$url\" target=\"_blank\" title=\"$titulo\">$titulo.\n";
$linea=~s/(<a href="(http[^"]+?)" target="_blank" title="([^"]*?)">(.*?)<\/a>)//i;
}
}

¿Como se podria hacer que de igual si el target está o no, o que no importe el orden?

Rollos antiguos

2005-04-07 00:00:00 - Ejecutar comandos al cambiar la ip.

2005-06-08 00:30:00 - Chris Isaak - Wicked game.

2005-06-07 23:42:00 - Más que mil palabras.

2005-06-06 23:41:00 - Meme musical.

2005-06-06 00:24:00 - La termodinámica de las pilas galvánicas.

Saiyine

Selfie of meHi! Welcome to Saiyine Punto Com where I talk about anything that goes through my mind!

Puedo prometer y prometo que a la mayor brevedad aquí irá un menú o algo asín.