当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Elixir Base.hex_decode32用法及代码示例


Elixir语言中 Base.hex_decode32 相关用法介绍如下。

用法:

hex_decode32(string, opts \\ [])
@spec hex_decode32(binary(), case: decode_case(), padding: boolean()) ::
  {:ok, binary()} | :error

将带有扩展十六进制字母的 base 32 编码字符串解码为二进制字符串。

选项

接受的选项是:

  • :case - 指定解码时接受的字符大小写
  • :padding - 指定是否需要填充

:case 的值可以是:

  • :upper - 只允许大写字符(默认)
  • :lower - 只允许小写字符
  • :mixed - 允许混合大小写字符

:padding 的值可以是:

  • true - 要求将输入字符串填充到最接近的 8 倍数(默认)
  • false - 忽略输入字符串的填充

例子

iex> Base.hex_decode32("CPNMUOJ1E8======")
{:ok, "foobar"}

iex> Base.hex_decode32("cpnmuoj1e8======", case: :lower)
{:ok, "foobar"}

iex> Base.hex_decode32("cpnMuOJ1E8======", case: :mixed)
{:ok, "foobar"}

iex> Base.hex_decode32("CPNMUOJ1E8", padding: false)
{:ok, "foobar"}

相关用法


注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Base.hex_decode32(string, opts \\ [])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。