GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Algorithm::CheckDigits::M07_001(3) User Contributed Perl Documentation Algorithm::CheckDigits::M07_001(3)

CheckDigits::M07_001 - compute check digits modulo 7 method 1

  use Algorithm::CheckDigits;

  $m001 = CheckDigits('m001');

  if ($m001->is_valid('1234567892')) {
        # do something
  }

  $cn = $m001->complete('123456789');    # $cn = '1234567892'

  $cd = $m001->checkdigit('1234567892'); # $cd = '2'

  $bn = $m001->basenumber('1234567892'); # $bn = '123456789'

1.
All digits are added.
2.
All digits at even positions are added.
3.
The sum of step 1 and 2 is taken modulo 7.
4.
This is the check digit.

is_valid($number)
Returns true only if $number consists solely of numbers and the last digit is a valid check digit according to the algorithm given above.

Returns false otherwise,

complete($number)
The check digit for $number is computed and concatenated to the end of $number.

Returns the complete number with check digit or undef if $number does not consist solely of digits.

basenumber($number)
Returns the basenumber of $number if $number has a valid check digit.

Return undef otherwise.

checkdigit($number)
Returns the check digit belonging to $number or undef if $number does not consist solely of digits.

None by default.

Mathias Weidner, "<mamawe@cpan.org>"

perl, www.pruefziffernberechnung.de.
2022-04-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.