http://www.perlmonks.org?node_id=553258


in reply to add text to a string

Would this do?
$str = 'bcde'; $new = join "" => a => split // => $str; # $new = 'abcde';
That's warnings-tested, strict-approved. =)