in reply to Re: Problems with map(function, array)in thread Problems with map(function, array)
DB<139> sub my_uc { my $c = shift; return uc($c); } DB<140> my_uc() DB<141> @a = map my_uc, a..c => ("", "", "") [download]
keep in mind no argument means $c is undef!
Cheers Rolf