##
$html =~ s/foo/bar/;
if($baz_quux_replacement_required){
$html =~ s/baz/quux/;
}
$html =~ s/monkey/pants/;
####
$replacements =
[
['foo','bar'],
['baz','quux']
];
####
$replacements =
{
fix_foo => ['foo','bar'],
fix_baz => ['baz','quux']
};