2024-03-05 11:02:58 +00:00
|
|
|
defmodule IbanEx.Country.CH do
|
|
|
|
@moduledoc """
|
|
|
|
Switzerland IBAN parsing rules
|
2024-03-11 00:02:20 +00:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
iex> %IbanEx.Iban{country_code: "CH", check_digits: "93", bank_code: "00762", branch_code: nil, national_check: nil, account_number: "011623852957"}
|
|
|
|
iex> |> IbanEx.Country.CH.to_string()
|
|
|
|
"CH 93 00762 011623852957"
|
|
|
|
|
2024-03-05 11:02:58 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
@size 21
|
|
|
|
@rule ~r/^(?<bank_code>[0-9]{5})(?<account_number>[0-9A-Z]{12})$/i
|
|
|
|
|
2024-03-07 23:33:38 +00:00
|
|
|
use IbanEx.Country.Template
|
2024-03-05 11:02:58 +00:00
|
|
|
end
|