in reply to Re: Capitalize the 1st letter of each wordin thread Capitalize the 1st letter of each word
my @array = qw/one Two three four five/; s/(.)/\u\L$1/ for @array; [download]