wrong_fc {ifctools} | R Documentation |
Check Italian fiscal codes
Description
The function performs fiscal codes check (both regular and temporary ones), computing the last (control) character basing on the others. The algorithm is intended to be quite "draconian", so you'll better make some pre-cleaning (keep only alphabetic characters and uppercase) if needed. See examples.
Usage
wrong_fc(fc)
Arguments
fc |
A character vector of fiscal codes. |
Value
The function return TRUE
if the fiscal code is wrong,
FALSE
otherwise.
References
Law source: D.M. (Ministry of Finance) n. 13813 - 23/12/76 - "Sistemi di codificazione dei soggetti da iscrivere all'anagrafe tributaria". Supp. ord. G.U. 345 29/12/1976.
Examples
fc <- c(NA, "qWeASd34D12h 221M ", " 12312312312 ")
wrong_fc(fc)
fc <- gsub(" ","", toupper(fc))
wrong_fc(fc)
[Package ifctools version 0.3.6 Index]