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


Elixir String.replace_leading用法及代码示例


Elixir语言中 String.replace_leading 相关用法介绍如下。

用法:

replace_leading(string, match, replacement)
@spec replace_leading(t(), t(), t()) :: t()

stringmatchreplacement 替换所有前导出现的 match

如果没有出现,则返回未触及的字符串。

如果 match"" ,则此函数引发 ArgumentError 异常:发生这种情况是因为此函数替换了 string 开头的所有 match 出现,并且不可能替换 "multiple" 出现的 ""

例子

iex> String.replace_leading("hello world", "hello ", "")
"world"
iex> String.replace_leading("hello hello world", "hello ", "")
"world"

iex> String.replace_leading("hello world", "hello ", "ola ")
"ola world"
iex> String.replace_leading("hello hello world", "hello ", "ola ")
"ola ola world"

相关用法


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