
CheckDigits::M11_016 - compute check digits vor VAT Registration Number (PL)

use Algorithm::CheckDigits;
$nip = CheckDigits('nip');
if ($nip->is_valid('8567346215')) {
# do something
}
$cn = $nip->complete('856734621');
# $cn = '8567346215'
$cd = $nip->checkdigit('856734621');
# $cd = '5'
$bn = $nip->basenumber('8567346215');
# $bn = '856734621';

Returns true only if $number consists solely of numbers and the rightmost digit is a valid check digit according to the algorithm given above.
Returns false otherwise,
The check digit for $number is computed and appended to the end of $number.
Returns the complete number with check digit or '' if $number does not consist solely of digits, hyphens and spaces.
Returns the basenumber of $number if $number has a valid check digit.
Return '' otherwise.
Returns the check digits of $number if $number has valid check digits.
Return '' otherwise.
None by default.

Mathias Weidner, <mathias@weidner.in-bad-schmiedeberg.de>

perl, CheckDigits, www.pruefziffernberechnung.de, http://www.pruefziffernberechnung.de/U/USt-IdNr.shtml#PZPL (German), http://wipos.p.lodz.pl/zylla/ut/translation.html#PZPL (English), http://wipos.p.lodz.pl/zylla/ut/nip-rego.html (Polish)