my $string = "How It's Made"; $string =~ s/\'//g; print "$string\n"; # prints "How Its Made"