in reply to Capitalize first letter in a string?
$a = 'haha'; $a =~ s/^([a-z])/\U$1/; print $a; [download]
-- tune
--