Help for this page

Select Code to Download


  1. or download this
    $uniques{"$2.cfm"}++;
    
  2. or download this
    $uniques{"$2"}++;
    
  3. or download this
    while ($_ =~ /(<cf_)(.*?)[>\s]/gi) {
      # finding custom tags
      $uniques{$2}++;
    }
    
  4. or download this
    while (my ($code, $count) = each %uniques) {
      print "$code => $count\n";
    }