Hola, buenas a todos.
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>
Pongo el código:
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 (@lineas){
if($_ =~ m{$regexp->}o){
$total = $1;
$i++; ...