valavanp has asked for the wisdom of the Perl Monks concerning the following question:
Is there any other solution to minimise the process time. thanks monks for your suggestions.while (my ($key, $value) = each(%entitylist)){ #print $key."\n".$value."\n"; $string =~ s/$key/$value/g; }
|
|---|