my $match = "\\well"; print $match; #### \well #### my $match = "\\well"; $text =~ s/$match//; #### $text =~ s/\well//; #### my $match = "\\\\well"; $text =~ s/$match//; #### my $match = qr/\\well/; $text =~ s/$match//;
## \well ##
## my $match = "\\well"; $text =~ s/$match//; ##
## $text =~ s/\well//; ##
## my $match = "\\\\well"; $text =~ s/$match//; ##
## my $match = qr/\\well/; $text =~ s/$match//;