Make 2nd letter in word lowercase

Joined
Feb 22, 2005
Messages
7
Programming Experience
Beginner
Hi

I have been trying to make the second letter of a word lowercase, but have only managed to make all lowercase. For example the word "_Employee" I want to make it "_employee".

Anyone any ideas
thanks
 
You will have to do some string manipulation. Try using one string to hold the whole word, one to grab just the second letter in the string, change that to lowercase, then work out combining them back together.
 
Back
Top