Questions tagged [iban]

International Bank Account Number

64 questions
4
votes
2 answers

How to check an IBAN number using the Apache IBANCheckDigit?

In my Android app, I'm trying to check if an IBAN bank account number is valid. This supposedly can be done using the Apache IBANCheckDigit. I now try do so as follows: IBANCheckDigit a = new IBANCheckDigit(); try { String checkDigit =…
kramer65
  • 50,427
  • 120
  • 308
  • 488
3
votes
2 answers

Validate IBAN using XSLT 2.0?

is it possible to write an XSLT function which can do the basic IBAN Mod-97 check? From Wikipedia: 1. Move the four initial characters to the end of the string. 2. Replace each letter in the string with two digits, thereby expanding the string,…
oneone
  • 31
  • 2
3
votes
2 answers

How can I calculate an IBAN national check digit?

Following Wikipedia, I’m developing a Java application that calculates and verifies IBANs from various countries. Some BBAN have a national check digit, but I can't find any documentation about how to calculate it. Where I can find the algorithm for…
Tostis
  • 386
  • 2
  • 5
  • 13
3
votes
3 answers

Get the IBAN number from an emv card

i have some issues with reading the IBAN number from the german CashCards (also known as Geldkarte). I can communicate with my card, and i get some informations from it. but i don`t know which commandApdu i must send to the card, to get the IBAN…
Andreas K
  • 222
  • 1
  • 11
2
votes
2 answers

C converting 20 digit string to number for IBAN validation

I am doing an IBAN validation in C. For this I have a char* which is something like '2012129431327715102998'. Now I want to check the IBAN by taken the value modulo 97. So I want to do 2012129431327715102998 % 97. I have already tried to convert the…
Janine
  • 297
  • 3
  • 9
2
votes
0 answers

IBAN validation using ng-iban

I am trying to do IBAN validation. Before this step, the user gets to input the country (5 countries in this case) and then when the user enters the IBAN, it should validate depended on the country selected. I am currently trying to use ng-iban with…
Naimul Karim
  • 21
  • 1
  • 3
2
votes
5 answers

Algorithm to add two digits to the end of a number to calculate a specific modulus?

So, lets say I have a number 123456. 123456 % 97 = 72. How can I determine what two digits need to be added to the end of 123456 such that the new number % 97 = 1? Note--it must always be two digits. For example, 12345676 % 97 = 1. In this case,…
Jim
  • 11,229
  • 20
  • 79
  • 114
2
votes
3 answers

Ruby on Rails IBAN validation in model file

I'm trying to do iban validation as any country iban code. I got some of help from stackoverflow for build that code but still I have some problem and I don't know where is it. Always I get 'That is not a valid IBAN' error message. But sometimes I…
thatway_3
  • 404
  • 1
  • 10
  • 22
2
votes
0 answers

Code for verifying Belgian IBANS

Can someone help me create a function in Visual Basic for Applications (Excel) for verifying Belgian IBAN numbers? So I can add a list of numbers in Excel and it validates them as TRUE or FALSE. Example of a Belgian IBAN number: BE43 1325 3117…
2
votes
2 answers

VbScript validate IBAN with mod97 (number is too big)

So I am writing an application in VbScript and I am trying to validate an IBAN number. The problem though, the number I have to mod with, is too big. For example: 734027177486111478 mod 97 that is what I want to do, but I can't seem to find a type…
DCMetaZero
  • 79
  • 1
  • 3
  • 8
1
vote
0 answers

No value with Stripes IbanElement

I try to implement the IbanElement from Stripe to handle payments. I implemented the IbanElement as it should be but when I call the element I get an object with the bank, etc but the value of the input field is undefined. Somebody ran also into…
bnexd
  • 161
  • 4
  • 13
1
vote
2 answers

How can I generate IBAN for Swedish Account number

Problem statement I have a Swedish Bank (SEB) account number and I need to generate the IBAN for this account number (in java code) A possibility I can see that it's possible if I use website: https://www.ibancalculator.com/ What I…
1
vote
1 answer

How to do SWIFT code and IBAN validation in c#

I need to validate IBAN and SWIFT from c#. I can see for the IBAN part there is a nuget package I am going to test: IBAN NUGET However for the SWIFT part I haven't found much information. Anyone knows how to do this kind of validation from c#?
Thomas Segato
  • 4,567
  • 11
  • 55
  • 104
1
vote
0 answers

Regex to mask credit card numbers but not IBAN numbers

I'm using the regex code below to mask the credit card numbers on my application but it seems I'm also masking IBAN numbers which I would like to mask, has anyone faced this issue before? Does anyone know the patron for IBAN numbers and how to keep…
Cristian
  • 11
  • 1
1
vote
1 answer

calculate and check an IBAN

Algorithm that calculates the IBAN key and compares it with the key entered in iban: Remove the country code and key Put the country code and a key 00 at the end convert characters in number (A=10; B=11; ......) calculate modulo 97 remove the…
Estelle
  • 51
  • 4