-
-
Save oskarnrk/da0f90c6602f8c936f306f64bd7a2ea4 to your computer and use it in GitHub Desktop.
Check Italian Fiscal Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const validFiscalCodeRegexp = /^([A-Za-z]{6}[\dlmnpqrstuvLMNPQRSTUV]{2}[abcdehlmprstABCDEHLMPRST]{1}[\dlmnpqrstuvLMNPQRSTUV]{2}[A-Za-z]{1}[\dlmnpqrstuvLMNPQRSTUV]{3}[A-Za-z]{1})$|(\d{11})$/; | |
const isValidFiscalCode = cf => validFiscalCodeRegexp.test(cf); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment