Help for this page

Select Code to Download


  1. or download this
    use Time::HiRes qw(time);
    
    ...
    
    $id_number =~ s/\.//;
    $id_number =~ s/(.{12}).*/$1/;
    
  2. or download this
    my $id_length   = 12;
    my $id_char_set = 16;
    ...
        return $x;
    }