Hello, when I open a html template, and want to replace the marks with content, I have to do it line by line, can't it be done differently?? Or doesn't it really matter. It doesn't feel slow, but my sense tells me that it should take more time the way I'm doing it now (line-by-line, instead of ONE go).
This is how I would like to do it:
But this is how I have to do it:
I guess it takes more CPU to do it line by line, doesn't it? instead of the whole thing in ONE go?
What do I need to do to let the first version work?
This is how I would like to do it:
Code:
#I would like to open the html as a variable
open (TEM, "<template.htm");
my $html=<TEM>;
close(TEM);
$html =~ s/#content#/$content/i;
print $html;
But this is how I have to do it:
Code:
#I have to open the html as an array
open (TEM, "<template.htm");
my @html=<TEM>;
close(TEM);
foreach my $line(@html){
$line =~ s/#content#/$content/i;
print $line;
}
I guess it takes more CPU to do it line by line, doesn't it? instead of the whole thing in ONE go?
What do I need to do to let the first version work?