-
Notifications
You must be signed in to change notification settings - Fork 4
isValidNIFFormat
elcapo edited this page Oct 16, 2014
·
2 revisions
isValidNIFFormat
tests a string against a regexp pattern to see if the string fits the NIF structure.
/* MySQL */
SELECT isValidNIFFormat( '33576428Q' ); /* Returns 1 */
SELECT isValidNIFFormat( '1A1A1A1A' ); /* Returns 0 */
/* JavaScript */
var isValid = isValidNIFFormat( '33576428Q' ); /* Returns 1 */
var isValid = isValidNIFFormat( '1A1A1A1A' ); /* Returns 0 */
/* PHP */
$isValid = isValidNIFFormat( '33576428Q' ); /* Returns 1 */
$isValid = isValidNIFFormat( '1A1A1A1A' ); /* Returns 0 */
-
1
- If the string fits the pattern. -
0
- Otherwise.
In order to facilitate the regexp test, this function uses respectsDocPattern
.
This function is part of the NIF, NIE & CIF package.
Go back home!
SEPA validations
- [International Bank Account Numbers (IBAN)](International Bank Account Numbers (IBAN))
Spanish validations
- NIF, NIE & CIF
- [Spanish Bank Accounts](Spanish Bank Accounts)
Helpers
- [Common functions](Common functions)