http://qs321.pair.com?node_id=321644

TASdvlper has asked for the wisdom of the Perl Monks concerning the following question:

All,

Say I have a array of words:

my @array = qw ( foo bar foobar barfoo 1 2 3 );
Is there a regex I can do to make sure each word starts with a capital letter ? So, my new array would be.
my @array1 = qw ( Foo Bar Foobar Barfoo 1 2 3 );
Thanks ....

janitored by ybiC: Corrected misspelling in title for better searching