use strict; use warnings; my $msg = 'this is a test'; my $pat = ''; my $rep = ''; $msg =~ s/$pat/$rep/; print $msg, "\n"; #### this is a test #### use strict; use warnings; my $c = 'this is another test'; $c =~ s/^this is/XX/; my $msg = 'this is a test'; my $pat = ''; my $rep = ''; $msg =~ s/$pat/$rep/; print $msg, "\n"; #### a test #### perl -v This is perl, v5.8.8 built for x86_64-linux-thread-multi-ld