formual validate RAS ID number code example
Example: validate id number
use Scalar::Util 'looks_like_number';
sub Validate_IdNum($);
sub GetLuhnDigit($);
sub Validate_IdNum($)
{
my $sSubName = (caller(0))[3];
my $bFaulty = 0;
my $sIdNo = $_[0];
my $iStrLen = length $sIdNo;
my $LastChar = substr($sIdNo, - 1);
if ( looks_like_number($sIdNo) == 0 ) {
$bFaulty = 1;
}
else {
if ( (length $sIdNo) != 13 ) {
$bFaulty = 1;
}
elsif ( substr($sIdNo, - 1) != GetLuhnDigit($sIdNo) ){
$bFaulty = 1;
}
}
if ($sRetMsg eq "") {
$sRetMsg = "0";
}
return ($sRetMsg,$bFaulty);
}
sub GetLuhnDigit($)
{
my $sSubName = (caller(0))[3];
my $iLastDigit = -1;
my $s12Digits = $_[0];
my $iSumOdd = 0;
my $iEvenDigits = "";
for (my $i=0;$i<6;$i++) {
$iSumOdd = $iSumOdd + substr($s12Digits,2 * $i,1);
}
for (my $i=0;$i<6;$i++) {
$iEvenDigits = $iEvenDigits . substr($s12Digits,(2 * $i) + 1,1);
}
my $iDblEven = 2 * $iEvenDigits;
my $iSumDblEvens = 0;
for (my $i = 0; $i < length($iDblEven); $i++) {
$iSumDblEvens = $iSumDblEvens + substr($iDblEven,$i,1);
}
my $iUnitVal = $iDblEven;
my $iFinalBase = $iSumOdd + $iSumDblEvens;
$iLastDigit = 10 - substr($iFinalBase, - 1);
if ($iLastDigit == 10) {
$iLastDigit = 0;
}
return $iLastDigit;
}