iban-ex/lib/iban_ex/commons/commons.ex

23 lines
453 B
Elixir
Raw Normal View History

2024-03-05 06:02:58 -05:00
defmodule IbanEx.Commons do
@moduledoc false
2024-03-05 06:02:58 -05:00
@spec normalize(binary()) :: binary()
def normalize(string) do
string
|> to_string()
|> String.replace(~r/\s*/i, "")
|> String.upcase()
end
@spec normalize_and_slice(binary(), Range.t()) :: binary()
def normalize_and_slice(string, range) do
string
|> normalize()
|> String.slice(range)
2024-05-11 11:52:34 -04:00
# |> case do
# "" -> nil
# result -> result
# end
2024-03-05 06:02:58 -05:00
end
end