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 );

uppercase strings

2003-10-08 Thread Sara Gribble
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. Here is my code, can anyone help? Thanks, Sara G. !/usr/bin/perl # Demons