j'ai une boucle for qui me produit un champ vide a la fin de mon tableau comment pourrai je empeche cela?
for my $i(map {clean($_)} @$row) {
#chomp $i;
my $d = "<tr><td>$i</td></tr>\n";
print $per_line_fh $d if ($i);
}
print $per_line_fh "</table>\n</body>\n</html>";
close $per_line_fh;
}
sub clean {
my $string = shift;
$string =~ /\s*,\s*/;
$string =~ /\s*,\s*/;
(…)