in reply to Escaping single quote in $string

To remove the quote the third one you have there should work, as long as you don't do either of the first two beforehand:
my $string = "How It's Made"; $string =~ s/\'//g; print "$string\n"; # prints "How Its Made"