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


Elixir Base.decode64用法及代码示例


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

用法:

decode64(string, opts \\ [])
@spec decode64(binary(), ignore: :whitespace, padding: boolean()) ::
  {:ok, binary()} | :error

将 base 64 编码字符串解码为二进制字符串。

接受 ignore: :whitespace 选项,该选项将忽略输入字符串中的所有空白字符。

接受 padding: false 选项,该选项将忽略输入字符串中的填充。

例子

iex> Base.decode64("Zm9vYmFy")
{:ok, "foobar"}

iex> Base.decode64("Zm9vYmFy\n", ignore: :whitespace)
{:ok, "foobar"}

iex> Base.decode64("Zm9vYg==")
{:ok, "foob"}

iex> Base.decode64("Zm9vYg", padding: false)
{:ok, "foob"}

相关用法


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