in reply to How do I insert (not overwrite) into a string?

Regular expressions can handle this just fine as well:
my $string = "ello"; $string =~ s/^/Henry said H/;