International Bank Account Number
Questions tagged [iban]
64 questions
1
vote
0 answers
Regex to extract IBAN ignoring colon
I want to improve regex that works with the following string:
Uw BTW nummer NL80
IBAN NL 11abna0317164300asdfasf234
(SPACE)iBAN NL21ABNA0417134300 22
Iban: NL 29 ABNA 401422366f sdf
IBAN :NL 39 ABNA 0822416395s
And created regex failed to…

Ian Kuzin
- 37
- 1
- 6
1
vote
2 answers
How to check IBAN validation?
How can I validate IBAN (International Bank Account Number) in java to use in Android Apps?
The International Bank Account Number is an internationally agreed system of identifying bank accounts across national borders to facilitate the…

Alireza Noorali
- 3,129
- 2
- 33
- 80
1
vote
0 answers
Algorithm to match IBAN to BIC
I'm trying to find a solution to convert IBANs to BICs.
In theory, all I need is to have a db with national bank codes and their BICs to compare these national codes with corresponding ones in IBANs (based on IBAN format for that country described…

pandomic
- 607
- 1
- 6
- 17
1
vote
2 answers
How to extract IBAN number using emv payment method
I am trying to read the IBAN from a contactless card and I am using the PAN/Track 2 equivalent data tag, but I can see that the bank code is 5 digits (institute number), not 8. I don't know how to find or convert that to blz. I can't find anywhere…

Kristina
- 31
- 4
1
vote
0 answers
Swift using Modulo 97 for IBAN Converter
Hey,
I want to build a IBAN converter tool for IPhones. What I mean by that is that the User has 2 textfield. One for the bank code and one for the account number.
To get the right IBAN I have to put the "Checksum" e.g 700901001234567890131400 and…

Enes
- 79
- 1
- 9
1
vote
1 answer
IBAN Regex to include spaces and dash
I'm trying to create a regex that would allow/register a IBAN number even if it includes dashes or spaces.
EX.
Greece IBAN #
GR1601101250000000012300695
Greece IBAN Regex
GR\d{2}\d{4}\d{3}\w\w{4}\w{4}\w{4}\w{3}
I want to combine these three(3)…

Jungle5500
- 11
- 4
1
vote
2 answers
Detect IBAN in text
There is a simple regex pattern that detect IBAN in a text (including specific country formatting ?)
Actually I am finding IBAN with this regex :
[a-zA-Z]{2}[0-9]{2}[0-9a-zA-Z]{10,30}
But this doesn't match formatted IBAN like (normal, I don't have…

Aure77
- 3,034
- 7
- 33
- 53
1
vote
0 answers
How to remove blank after td
I want to display an IBAN number in a html mail. To improve readability I want to add a blank after every 4th sign. To also provide a good usability I want to do this with padding, so the user can copy & paste the IBAN into his online banking system…

bejonwe
- 11
- 3
1
vote
1 answer
Simple JavaScript IBAN Validation
I wanted to make a really easy JavaScript validation for the IBAN.
It is for a project on school what means the goal of the validation isn't to get a 100% good IBAN validation but something easy to get along with.
I tried to create my…
user4621049
1
vote
1 answer
How to edit an IBAN number in four character groups?
https://en.wikipedia.org/wiki/International_Bank_Account_Number#Practicalities
The IBAN should not contain spaces when transmitted electronically:
when printed it is expressed in groups of four characters separated by
a single space, the last…

Jens Mühlenhoff
- 14,565
- 6
- 56
- 113
1
vote
3 answers
Optimize PHP script for generating IBAN
I wrote function in PHP that generates croatian IBAN for given bank account. I can easily rewrite for returning any IBAN. Problem is that I think it is not optimized nor elegant. This is the function:
function IBAN_generator($acc){
…

Cikson
- 106
- 2
- 17
1
vote
2 answers
MariaDB update error inner join and select
I hope you can help me again, thanks already for pointing me to the right direction with creating the check digit for the new IBAN in Germany. I am now trying to update our membership database with the newly calculated BIC and IBAN but seem to have…

user3070861
- 17
- 1
- 5
0
votes
1 answer
PostgreSQL: Not fully alphanumeric, Not fully in capital letters, Length different than 18
could you please help me writing the script which would bring an output for these requirements??
Select IBANs which are:
Not fully alphanumeric
Not fully in capital letters
Length different than 18
My current query:
Select *
FROM Table
WHERE…

Xinkale
- 1
0
votes
1 answer
adapting bank information form based on country
I have a form where I need to ask for my users for their bank details to facilitate payouts. Aside of their account numbers, there are bank codes (e.g., Swift, IBAN, BIC, BSB, etc.). What kind of information is needed may differ per country. Hence,…

user40037
- 35
- 5
0
votes
1 answer
XSLT - Remove spaces and hyphens from element that shows up more than once
I am working through a payment integration transformation. One xml payment fie can contain more than one payment. because of this there will be more than one instances of IBAN (). I need my XSLT to remove all spaces and hyphens from the one or many…

deeztings
- 3
- 1