Questions tagged [iban]

International Bank Account Number

64 questions
0
votes
1 answer

Avoid extracting IBAN number from string

I am trying to avoid extracting the IBAN number from my string. Example: def get_umsatzsteuer_identifikationsnummer(string): # Demo --> https://regex101.com/r/VHaS7Y/1 reg = r'DE[0-9 ]{12}|DE[0-9]{9}|DE [0-9]{9}' match = re.compile(reg) …
PParker
  • 1,419
  • 2
  • 10
  • 25
0
votes
0 answers

Storage iban in my own application

I need to store user's IBAN in my own application. Some people told me that the IBAN is not a secret information, so I could store the IBAN in my application with the classic encryption. Is it right? because other people told me: The IBAN is part…
roaned
  • 33
  • 5
0
votes
2 answers

How to add whitespace for array of IBAN properly

I want to ask a question about regex. I have an array of IBAN. eg ["DE46700202700663820656", "DE07860700240455474700"] I want to add whitespace between each 4 characters. eg "DE46 7002 0270 0663 8206 56" Currently I use this…
aaayumi
  • 1,224
  • 8
  • 27
  • 47
0
votes
1 answer

How to convert an IBAN to an Integer?

Note, this is not about using libraries or any specific programming language. I just want to understand the following concept, from Wikipedia, Validating the IBAN: Example (fictitious United Kingdom bank, sort code 12-34-56, account number…
q9f
  • 11,293
  • 8
  • 57
  • 96
0
votes
2 answers

regex to mask IBAN

I want to mask IBAN. I have to show only first 7 characters and last 4 characters. Example: Input: PL61109010140000071219812874 Output: PL61109***********2874 I wrote the following regex: (?<=.{7})(.*)(?=.{4}) but js do not support lookbehind
Nemesis
  • 41
  • 2
  • 10
0
votes
1 answer

hungarian BBAN validation

can anybody tell me how to validate Hungarian BBAN account numbres ? on the internet i have only found that it is 24 numbers length And in format bbbs sssk cccc cccc cccc cccx b = National bank code s = Branch code c = Account number x = National…
jan
  • 39
  • 3
0
votes
1 answer

Validate IBAN using org.apache.commons.validator

In a android project i have a EditText where the user can insert his IBAN i then validate the IBAN like this, using org.apache.commons.validator IBANCheckDigit iBANCheckDigit = new IBANCheckDigit(); Boolean validIBAN =…
Thought
  • 5,326
  • 7
  • 33
  • 69
0
votes
1 answer

How to transform a BBAN account to an IBAN account

The question is in the title, the BBAN is a Belgian Bank Account Number. I don't need the code for it I know it is some simple modulo addition but I don't know the exact rules to do it(algorithm). I only found validation rules no…
maazza
  • 7,016
  • 15
  • 63
  • 96
0
votes
2 answers

jQuery Validation - IBAN

I saw that there are a few plugins available on the internet for checking if an IBAN is correct or not. I found the following IBAN and wanted to use it for my form: https://github.com/jzaefferer/jquery-validation/blob/master/src/additional/iban.js…
Christoph C.
  • 840
  • 2
  • 22
  • 38
0
votes
4 answers

Issue with InStr and Left to return right text from string

I am playing around with some IBAN/SWIFT codes that I have in a string in Excel VBA, but I would like to just pick the IBAN number out of the string. Samples: DK4520005010201483 IBAN NDEADKKKXXX NL24ABNA0424079763 iban…
Niclas
  • 1,069
  • 4
  • 18
  • 33
0
votes
2 answers

How to mask SEPA (IBAN and BIC) information correctly?

I'm currently developing a payment system where users can use SEPA-debit to pay for the service. The user has the ability to enter the data once and can then select the same payment method when making another payment in the future. So in order for…
devsnd
  • 7,382
  • 3
  • 42
  • 50
0
votes
2 answers

Jquery validation BIC IBAN in asp.net

I'm using the latest version of the Jquery Validation plugin which has support for validating BIC and IBAN numbers. This is part of the additional methods js which I've included and is working fine for validating IBANs, however, it fails when…
Full Time Skeleton
  • 1,680
  • 1
  • 22
  • 39
0
votes
1 answer

MySQL Automatically Calculate IBAN bigint overflow

this is my first question I am posting in stackoverflow, I hope, someone can help me. So far I could not find anyone asking a similar question here. I would like to check whether a German IBAN is correct. In principle, this is easy: You concatenate…
user3070861
  • 17
  • 1
  • 5
-1
votes
2 answers

Convert a String to an Integer with PHP

How can i convert a String to an Integer without losing the zeros and preventing an overflow.
IT-noob
  • 31
  • 2
-1
votes
1 answer

IBAN validation Python

For unitversity, we have to program a code, which validates the IBAN of Germany, Suisse and France. The German IBAN DE08700901001234567890 contains the two letters 'DE', the test number 08, the bank number 70090100 and the account number…
Marceline
  • 11
  • 2
  • 6