in reply to Changing to Lowercase Except the First Letter


In this case it's probably best to let perl do the task for you using the lc and ucfirst functions. For an example:
$firstname = ucfirst lc $firstname; $lastname = ucfirst lc $lastname;
Think for a little bit and you can probably think of a loop to do this if you have a few values you need to do operate on.

HTH,
jynx