Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    while ( /(8[[:xdigit:]])\s+\1/g ) {
      print "Duplicate $1 found at character " . pos() . "\n";
    }
    
  2. or download this
    bash$ superdoc.pl
    Duplicate 81 found at character 20
    Duplicate 82 found at character 68
    
  3. or download this
    # while ( /([[:xdigit:]]{2})\s+\1/g ) {
    
  4. or download this
    bash$ superdoc.pl
    Duplicate 81 found at position 20
    ...
    Duplicate 01 found at position 41
    Duplicate 00 found at position 53
    Duplicate 82 found at position 68