2024-03-05 06:02:58 -05:00
|
|
|
defmodule IbanEx.Country.DK do
|
|
|
|
|
@moduledoc """
|
|
|
|
|
Denmark IBAN parsing rules
|
2024-03-10 20:02:20 -04:00
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
2024-05-14 19:15:55 -04:00
|
|
|
```elixir
|
|
|
|
|
iex> %IbanEx.Iban{
|
|
|
|
|
...> country_code: "DK",
|
|
|
|
|
...> check_digits: "50",
|
|
|
|
|
...> bank_code: "0040",
|
|
|
|
|
...> branch_code: nil,
|
|
|
|
|
...> national_check: nil,
|
|
|
|
|
...> account_number: "0440116243"
|
|
|
|
|
...> }
|
|
|
|
|
...> |> IbanEx.Country.DK.to_string()
|
|
|
|
|
"DK 50 0040 0440116243"
|
|
|
|
|
```
|
2024-03-05 06:02:58 -05:00
|
|
|
"""
|
|
|
|
|
@size 18
|
|
|
|
|
@rule ~r/^(?<bank_code>[0-9]{4})(?<account_number>[0-9]{10})$/i
|
|
|
|
|
|
2024-03-07 18:33:38 -05:00
|
|
|
use IbanEx.Country.Template
|
2024-03-05 06:02:58 -05:00
|
|
|
end
|