in reply to How do I insert (not overwrite) into a string?
use strict; my $str = "ello"; substr($str,0,0) = "H"; print $str, "\n"; [download]