in reply to more then one string replacement

Here's one way:

$string =~ s/description/summary/gi ; $string =~ tr/=/:/ ;
and here's another:
%subs = ( description => 'Summary', '=' => ':', blah => 'wibble' ); foreach (keys %subs) { $string =~ s/\Q$_/$subs{$_}/gi; }

hth,
andy.