- or download this
my $target = 'this is a test of the servise';
$target =~ s//are/;
print "$target\n";
- or download this
if ($target =~ /test/) {
$target =~ s//quiz/;
}
- or download this
my $target = 'this is a test of the servise';
if ($target =~ /test/) {
...
} else {
$target =~ s//foo/;
}