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

There are several methods to do this. Shendal has listed one. Here are a couple of others:
# Concatenation my $str = 'ello'; $str = 'H' . $str; # Regex my $str = 'ello'; $str =~ s/^(.*)$/H$1/;
Cheers,
Ovid