I have a file of around 3000 lines. I am matching every word in the document against reference lists that i have. If the word matches to the one in my list then I substitute it. The problem now is that the code only prints the last line, but not the entire file.
I am sure that my code is not that efficient and will take a long time to process, is there anyway to increase the efficiency of the code
open IN, "drug_list.txt" or die "No such file:$!\n";
open OUT, ">synergy1.txt" or die;
while(<IN>) {
my @a=split /\t/,$_;
$a[0]=~s/\s//g;
$a[1]=~s/\s//g;
$a[2]=~s/\s//g;
$b[$i]=$a[0];
$c[$i]=$a[1];
$d[$i]=$a[2];
++$i;
}
use Data::Dumper;
open FILE, "input.txt" or die "No such file:$!\n";
while(<FILE>) {
my $line= $_;
chomp $line;
$line =~ s/(\)|\()//g;
$line =~ s/,/ ,/g;
$line =~ s/\./ ./g;
@array = split ' ',$line;
for($k=0;$k<$i;++$k) {
foreach $n(@array) {
if($n=~m/^\Q$b[$k]\E$/i) {
$n=~s/$n/<span style="background-color:yellow;">$n<\/span>/;
}
if($n=~m/^\Q$c[$k]\E$/i) {
$n=~s/$n/<span style="background-color:red;">$n<\/span>/;
}
if($n=~m/^\Q$d[$k]\E$/i) {
$n=~s/$n/<span style="background-color:blue;">$n<\/span>/;
}
} # end foreach
} # end for
} # end while
print OUT "@array";
close(FILE);
close(IN);
print OUT "@array"is outside the loop, hence it only prints the last line assigned to it. – TLP Apr 30 '12 at 6:30