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

Just to follow-up KM and davorg, note that you can use substr() as an lvalue. It's just syntactic sugar, but I like the taste of it. 8^)
use strict; my $str = "ello"; substr($str,0,0) = "H"; print $str, "\n";