Four very identical regular expressions. I am replacing the strings with the following scalar values. How can this be more efficient?
$line =~ s/\[(receiver)\]/$receiver/g;
$line =~ s/\[(place)\]/$place/g;
$line =~ s/\[(position)\]/$position/g;
$line =~ s/\[(company)\]/$company/g;
Thank you.