Re: uppercase strings

2003-10-08 Thread simran
Looks like you are almost there... % perldoc -f ucfirst On Thu, 2003-10-09 at 13:41, Sara Gribble wrote: > I would appreciate some help with this. I am learning > Perl. I have a string inputed by the user. This string > is then split, every first letter of each word in the > string is uppercase

Re: uppercase strings

2003-10-08 Thread Jeff 'japhy' Pinyan
On Oct 8, Sara Gribble said: >I would appreciate some help with this. I am learning >Perl. I have a string inputed by the user. This string >is then split, every first letter of each word in the >string is uppercased, then joined back together and >printed. >my @words = split( / /, $firstline );