iban4j icon indicating copy to clipboard operation
iban4j copied to clipboard

A Java library for generation and validation of the International Bank Account Numbers (IBAN ISO_13616) and Business Identifier Codes (BIC ISO_9362).

Results 63 iban4j issues
Sort by recently updated
recently updated
newest added

BBAN for Norway is appended with "null" which increases its length and hence validation is failing. Can you help me if i'm missing something? Or can this issue be fixed?...

Is there any way to generate BIC with this library ?

Hi, Is there any specific reason why you do not apply any zero padding in the IbanBuilder? -> https://github.com/arturmkrtchyan/iban4j/blob/master/src/main/java/org/iban4j/Iban.java#L401 iterates all bban entries which have length information so if a...

Currently library works straight according to ISO spec., but there is a list of countries with partially support IBAN system and have valid IBAN codes. More over many banks (like...

enhancement

`new Iban.Builder().countryCode(CountryCode.CZ).bankCode("2010").accountNumber("2300121591").build().toString();` should be smart enough to work without leading zeroes for accountNumber fails with `org.iban4j.IbanFormatException: [20102300121591] length is 14, expected BBAN length is: 20 at org.iban4j.IbanUtil.validateBbanLength(IbanUtil.java:362) at org.iban4j.IbanUtil.validate(IbanUtil.java:79) at...

As stated in the comment from last week, I added SEPA support to IbanUtil and Countrycodes and would like you to merge this.

Hi Artur Thanks for great lib. Could you please to accept PR with fix for KZ?

in progress

Added BBAN structures of Jersey & Isle of Man

in progress

Looks like you're not using any error-checking in your Java build. This pull requests adds a static analysis tool, [Error Prone](http://errorprone.info), created by Google to find common errors in Java...