in reply to uc() every other letter


my @lcase = ('a'..'z'); my @upcase = map { ord() % 2 ? uc() : $_ } @lcase;


jOhn
--