Help for this page

Select Code to Download


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