in reply to Capitalize the 1st letter of each word
If you hit the Library, under Perl Functions, Alphabetical, you'll find ucfirst() and lcfirst(), which will upper- or lower-case (respectively) the first character of a given word. So you could do something along the lines of:
my @array = qw( foo bar foobar barfoo 1 2 3 ); foreach my $i (0 .. $#array) { $array[$i] = ucfirst($array[$i]); }
I suspect a regex in this case is actually overkill.... HTH....
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Capitalize the 1st letter of each word
by mcogan1966 (Monk) on Jan 15, 2004 at 20:02 UTC | |
by BrowserUk (Patriarch) on Jan 15, 2004 at 20:29 UTC |