Hola, buenas a tod@s.
Pongo el código y me explico:
Este es el texto que procesa el script.
<a class="pais" href="">USA</a></td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">dato USA</td>
<a class="pais" href="">Spain</a></td>
<td style="font-weight: bold; text-align:right;background-color:#FFEEAA;">dato Spain</td>
y este parte del script
my $i = 0;
my @total = ();
@regexp = (".*pais.*>(.*?)<\/a",".*FFEEAA.*>(.*?)<\/t");
procesar ($texto, \@regexp);
sub procesar{
my ($content,$regexp) = @_;
my @lineas = split "\n" , $content;
my @reg = @{$regexp};
foreach ...