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


Elixir String.replace_prefix用法及代码示例


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

用法:

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

如果匹配 match ,则将 string 中的前缀替换为 replacement

如果没有匹配,则返回未触及的字符串。如果 match 是空字符串 ( "" ),则 replacement 只是添加到 string 之前。

例子

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

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

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

相关用法


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