in reply to add text to a string
substr $string, 0, 0, 'a'; [download]
substr ($string, 0, 0) = 'a'; [download]
my $string = 'a'; $string .= 'bcde'; [download]
$string = 'a' . $string; is fine.
After Compline,Zaxo