Created
July 18, 2012 07:51
-
-
Save hpmewes/3134906 to your computer and use it in GitHub Desktop.
jQuery - IBAN
This file contains 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
/** | |
* Check for Germany IBAN | |
*/ | |
var regexIBANDE = '([A-Z]{2})([0-9]{2})([0-9]{8})([0-9]{10})'; | |
var matchIBANDE = $('#someid').val().match(regexIBANDE); | |
console.log('match: iban '+matchIBANDE); | |
// iban correct | |
if(matchIBANDE != null) { | |
var IBAN = matchIBANDE[0]; | |
var bankCode = matchIBANDE[3]; | |
var regexBankAccountNr = '([0]*)([0-9]*)' | |
var bankAccountNr = matchIBANDE[4]; | |
console.log('match: bank '+bankAccountNr.match(regexBankAccountNr)); | |
bankAccountNr = bankAccountNr.match(regexBankAccountNr); | |
// set bank data | |
$('#bank_account_bank_account_nr').val(bankAccountNr[2]); | |
$('#bank_account_bank_account_bank_code').val(bankCode); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment