Questions tagged [iban]

International Bank Account Number

64 questions
-1
votes
1 answer

Generate random dutch IBAN numbers

I have a Jmeter test plan where I want my HttpSampler to send a post request. The body of the request should contain Json as follows: { "iban": "${iban}", "name": "${name}", "phoneNumber": "0646875588", "termsAccepted": "true" } the IBAN…
Erwin
  • 1
-1
votes
1 answer

Validation of Swift BIC if it is SEPA reachable

I would like to know if there is any existing library other than SWIFT directory(As they are not free) , which will validate Swift BIC is sepa reachable.
-2
votes
1 answer

Javascript IBAN Validation. Check german or austrian IBAN

i want to validate a german or a austrian iban. ['validate-IBAN', 'Please enter a valid IBAN.', function (v) { var pass=v.strip(); if (0 == pass.length) { return true; } if (!(/[AT || DE]\w{2}/i.test(v)) ||…
Fabian T
  • 1
  • 2
-4
votes
1 answer

IBAN validation checksum

How to get a string of an IBAN number. I need to calculate the check digit, but there are too many characters. This is an example IBAN: BR0012345678901234567890123
1 2 3 4
5