Help for this page

Select Code to Download


  1. or download this
    my $ignore = '(^The )|(^A )';
    ...
    ...
        $b =~ s/$ignore//;
        lc( $a ) cmp lc( $b );
      } @indata;
    
  2. or download this
    %data = map { my $data = $_; s/$ignore//; ($_, $data } @indata;
    
    @sorted = @data{ sort{ lc( $a) cmp lc( $b)} keys %data };