- or download this
$html =~ s/foo/bar/;
$html =~ s/baz/quux/;
$html =~ s/monkey/pants/;
- or download this
$html =~ s/foo/bar/;
...
}
$html =~ s/monkey/pants/;
- or download this
$replacements =
[
['foo','bar'],
['baz','quux']
];
- or download this
$replacements =
{
fix_foo => ['foo','bar'],
fix_baz => ['baz','quux']
};