user5402's answer is correct. I just wanted to share some perl features:
s/\s*$/.csv/, say for @source;
Or split up, to avoid possible conflicts:
s/\s*$/.csv/ for @source;
say for @source;
say is enabled with use v5.10 or use feature qw(say), and is simply print with a newline appended to the end.
The substitution will replace any whitespace -- including carriage returns -- at the end of your strings with ".csv". If there is no whitespace, it will just add ".csv", since the quantifier * allows for zero matches, and the anchor $ matches the end of the string.
One bit of magic is that $_ is aliased in the subscript loop to all the elements of @source, and therefore is permanently changed by the substitution.
@sourcecontains what you think it does? Did youuse strict; use warnings;? – Mat Nov 4 '11 at 16:00@source, a part of it at least? – dboehmer Nov 4 '11 at 16:01