iban-ex/lib/iban_ex/country/nl.ex

11 lines
200 B
Elixir
Raw Normal View History

2024-03-05 11:02:58 +00:00
defmodule IbanEx.Country.NL do
@moduledoc """
Netherlands IBAN parsing rules
"""
@size 18
@rule ~r/^(?<bank_code>[A-Z]{4})(?<account_number>[0-9]{10})$/i
use IbanEx.Country.Template
2024-03-05 11:02:58 +00:00
end