IBAN_VALID¶
Description¶
IBAN_VALID checks whether a string is a structurally valid IBAN (International Bank Account Number). It verifies the country code, length, and mod-97 checksum as defined by the ISO 13616 standard. It does not verify whether the account actually exists.
Syntax¶
Returns: true if the IBAN is structurally valid, false otherwise.
Example¶
This returns true.
This returns false — the checksum does not pass.
Example in context¶
Returns true if the account number entered by the user is a valid IBAN. Commonly used as a condition to trigger a validation error or block case progression until a correct IBAN is provided.