M
Michele Dondi
That's two lines!
my ($desc) = map {local $_ = $_; s/\s+$//; $_} $line [7];
I often use C<local $_> myself, but I'm somewhat wary about it since
clpmisc informed me that it can be buggy with tied stuff, althoug I
doubt that $line [7] will contain any.
Michele