- or download this
@temp = map { s/^The // } @indata;
@sorted = sort {lc($a) cmp lc($b) } @temp;
- or download this
%hash = map { getkey($_) => $_ } @array;
...
$hash{getkey($_)} = $_;
}
- or download this
@temp = map {my $tmp; ($tmp = $_) =~ s/^The //; $tmp} @indata