it is a simple question i guess, but I was trying to change just the first lower case letter of a line from a .txt file to an upper case, using the following
$_ =~ s/^[a-z]/\U/;
What happens, when I execute it, is that instead of changing the lower case to upper case the lower case at the beginning of the line is substituted with the most significant bit on the line. For example the line nAkld987aBALPaapofikU88 instead of being substituted with NAkld987 becomes Akld987...
$_ =~ s/.../.../;is the same ass/.../.../;. – RobEarl Nov 21 '12 at 18:25