Help for this page

Select Code to Download


  1. or download this
    $seen{$item}{count}++ # to increment the Count
    push @urls, $item unless $seen{$item}
    $seen{$item}++ # To store the url
    
  2. or download this
    @urls = ( { url => 'http://www.url.com',
                title => 'The secret to Perl',
    ...
                count => '2'
              
    );