Help for this page

Select Code to Download


  1. or download this
    @comb = (
      [ 'ebay', 'ebay.com' ],
      [ 'yahoo', 'yahoo.com'],
      [ 'google', 'google.com'],
    );
    
  2. or download this
    for ( @whatever) {
      # code that extracts URL and Link here
      push @comb, [ $link, Surl ];
    }
    
  3. or download this
    @bylink = sort {$a->[0] cmp $b->[0] } @comb;
    
    @byurl = sort {$a->[1] cmp $b->[1] } @comb;
    
  4. or download this
    @links = map { $_->[0] } @bylink;
    
    @urls = map { $_->[1] } @byurl;